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
|
||||
script:
|
||||
- make localbuild
|
||||
- if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then COVERAGE=; else COVERAGE="coverage run"; fi
|
||||
- $COVERAGE `which pytest` -s -v tests/
|
||||
- if [ $TRAVIS_PYTHON_VERSION = 3.3 ]; then
|
||||
COVERAGE= ;
|
||||
PYTEST="python -m pytest";
|
||||
else
|
||||
COVERAGE="coverage run" ;
|
||||
PYTEST=`which pytest`;
|
||||
fi
|
||||
- $COVERAGE $PYTEST -s -v tests/
|
||||
|
||||
#notifications:
|
||||
# email: false
|
||||
|
|
Loading…
Reference in New Issue