We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd4bf2 commit f804654Copy full SHA for f804654
.travis.yml
@@ -5,11 +5,13 @@ python:
5
- '3.4'
6
- '3.5'
7
install:
8
-- pip install -r requirements.txt
9
-- pip install -r test_requirements.txt
10
-- pip install coveralls
+- virtualenv var
+- var/bin/pip install -U pip
+- var/bin/pip install -r requirements.txt
11
+- var/bin/pip install -r test_requirements.txt
12
+- var/bin/pip install coveralls pytest pytest-cov
13
script:
- coverage run --source=gogs_client setup.py test
14
+ var/bin/coverage run --source=gogs_client var/bin/pytest tests --cov=gogs_client --cov-report term-missing
15
after_success:
16
coveralls
17
deploy:
0 commit comments