We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d3f64d commit 60e795eCopy full SHA for 60e795e
2 files changed
.coverage
@@ -0,0 +1 @@
1
+!coverage.py: This is a private format, don't read it directly!{"lines":{}}
.travis.yml
@@ -2,6 +2,7 @@ language: python
2
3
python:
4
- "3.6"
5
+- "3.7"
6
7
install:
8
- pip install -r requirements.txt
@@ -11,10 +12,14 @@ install:
11
12
13
script:
14
- pytest
15
+ - py.test --cov-report term --cov=app/test/
16
- cd docs
17
- make html
18
- touch _build/html/.nojekyll
19
20
+after_success:
21
+ - codecov
22
+
23
deploy:
24
provider: pages
25
skip_cleanup: true
0 commit comments