BF: no pytest helper on 3.3 as well
This commit is contained in:
parent
868ca90092
commit
1bfcb11364
10
.travis.yml
10
.travis.yml
|
@ -36,8 +36,14 @@ install:
|
||||||
# command to run tests
|
# command to run tests
|
||||||
script:
|
script:
|
||||||
- make localbuild
|
- make localbuild
|
||||||
- if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then COVERAGE=; else COVERAGE="coverage run"; fi
|
- if [ $TRAVIS_PYTHON_VERSION = 3.3 ]; then
|
||||||
- $COVERAGE `which pytest` -s -v tests/
|
COVERAGE= ;
|
||||||
|
PYTEST="python -m pytest";
|
||||||
|
else
|
||||||
|
COVERAGE="coverage run" ;
|
||||||
|
PYTEST=`which pytest`;
|
||||||
|
fi
|
||||||
|
- $COVERAGE $PYTEST -s -v tests/
|
||||||
|
|
||||||
#notifications:
|
#notifications:
|
||||||
# email: false
|
# email: false
|
||||||
|
|
Loading…
Reference in New Issue