Skip to content

Commit

Permalink
do code coverage in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
rflamary committed Sep 24, 2018
1 parent c8c397b commit 5bb13e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ before_script: # configure a headless display to test plot generation
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install flake8 pytest
- pip install flake8 pytest pytest-cov
- pip install .
# command to run tests + check syntax style
script:
- python setup.py develop
- flake8 examples/ ot/ test/
- python -m pytest -v test/
- python -m pytest -v test/ --cov=ot
# - py.test ot test

0 comments on commit 5bb13e4

Please sign in to comment.