File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -15,19 +15,15 @@ sudo: false
1515
1616# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
1717install :
18- - pip install coverage
18+ - pip install -U pip
19+ - pip install -U pytest
1920
2021# command to run tests, e.g. python setup.py test
2122script :
22- - coverage run --source pointofview setup.py test --verbose
23- - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then python -m doctest pointofview/__init__.py; fi
24-
25- after_success :
26- - pip install coveralls
27- - coveralls # send coverage to coveralls.io
23+ - python ./setup.py develop
24+ - pytest test/*
2825
2926after_script :
30- - coverage report # show coverage on cmd line
3127- pip install pycodestyle pyflakes
3228- pyflakes . | tee >(wc -l) # static analysis
3329- pycodestyle --statistics --count . # static analysis
You can’t perform that action at this time.
0 commit comments