BF: on python 3.3 coverage/pytest are not cooperating - no coverage there
This commit is contained in:
parent
5d2638be3d
commit
868ca90092
|
@ -36,7 +36,8 @@ install:
|
||||||
# command to run tests
|
# command to run tests
|
||||||
script:
|
script:
|
||||||
- make localbuild
|
- make localbuild
|
||||||
- coverage run -- `which pytest` -s -v tests/
|
- if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then COVERAGE=; else COVERAGE="coverage run"; fi
|
||||||
|
- $COVERAGE `which pytest` -s -v tests/
|
||||||
|
|
||||||
#notifications:
|
#notifications:
|
||||||
# email: false
|
# email: false
|
||||||
|
|
Loading…
Reference in New Issue