We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0dcece0 + 31b0101 commit fc03e98Copy full SHA for fc03e98
2 files changed
.travis.yml
@@ -2,19 +2,24 @@ language: python
2
3
python:
4
- "3.6"
5
+- "3.7"
6
7
install:
8
- pip install -r requirements.txt
9
- pip install -e .
10
- pip install sphinx
11
- pip install sphinx_rtd_theme
12
+ - pip install codecov
13
14
script:
- - pytest
15
+ - pytest --cov=ParticleSpy
16
- cd docs
17
- make html
18
- touch _build/html/.nojekyll
19
20
+after_success:
21
+ - bash <(curl -s https://codecov.io/bash)
22
+
23
deploy:
24
provider: pages
25
skip_cleanup: true
requirements.txt
@@ -1 +1,4 @@
1
-PyQt5
+PyQt5
+coverage>=4.4.0
+pytest>=3.6.0
+pytest-cov
0 commit comments