File tree 2 files changed +4
-10
lines changed
2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 48
48
- PYTEST_ARGS="-ra --maxfail=1 --timeout=300 --durations=25 --cov-report= --cov=lib -n $NPROC"
49
49
- PYTHON_ARGS=
50
50
- DELETE_FONT_CACHE=
51
- - USE_PYTEST=false
52
51
53
52
matrix :
54
53
include :
@@ -61,7 +60,7 @@ matrix:
61
60
- python : 3.5
62
61
env : BUILD_DOCS=true
63
62
- python : 3.6
64
- env : USE_PYTEST=true DELETE_FONT_CACHE=1 INSTALL_PEP8=pytest-pep8 RUN_PEP8=--pep8
63
+ env : DELETE_FONT_CACHE=1 INSTALL_PEP8=pytest-pep8 RUN_PEP8=--pep8
65
64
- python : " nightly"
66
65
env : PRE=--pre
67
66
- os : osx
@@ -80,7 +79,6 @@ matrix:
80
79
- $HOME/.cache/matplotlib
81
80
allow_failures :
82
81
- python : " nightly"
83
- - python : 2.7
84
82
85
83
before_install :
86
84
- |
Original file line number Diff line number Diff line change @@ -23,14 +23,10 @@ if [[ $BUILD_DOCS == false ]]; then
23
23
echo PYTHONHASHSEED=$PYTHONHASHSEED
24
24
25
25
echo The following args are passed to pytest $PYTEST_ARGS $RUN_PEP8
26
- if [[ $USE_PYTEST == false ]]; then
27
- if [[ $TRAVIS_OS_NAME == ' osx' ]]; then
28
- python tests.py $PYTEST_ARGS $RUN_PEP8
29
- else
30
- gdb -return-child-result -batch -ex r -ex bt --args python $PYTHON_ARGS tests.py $PYTEST_ARGS $RUN_PEP8
31
- fi
26
+ if [[ $TRAVIS_OS_NAME == ' osx' ]]; then
27
+ python tests.py $PYTEST_ARGS $RUN_PEP8
32
28
else
33
- py.test $PYTEST_ARGS $RUN_PEP8
29
+ gdb -return-child-result -batch -ex r -ex bt --args python $PYTHON_ARGS tests.py $PYTEST_ARGS $RUN_PEP8
34
30
fi
35
31
else
36
32
cd doc
You can’t perform that action at this time.
0 commit comments