File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ matrix:
37
37
- JOB="3.5_OSX" TEST_ARGS="--skip-slow --skip-network"
38
38
- dist : trusty
39
39
env :
40
- - JOB="2.7_LOCALE" TEST_ARGS="--only-slow --skip-network" LOCALE_OVERRIDE="zh_CN.UTF-8"
40
+ - JOB="2.7_LOCALE" TEST_ARGS="--only-slow --skip-network" LOCALE_OVERRIDE="zh_CN.UTF-8" SLOW=1
41
41
addons :
42
42
apt :
43
43
packages :
@@ -62,7 +62,7 @@ matrix:
62
62
# In allow_failures
63
63
- dist : trusty
64
64
env :
65
- - JOB="2.7_SLOW" TEST_ARGS="--only-slow --skip-network"
65
+ - JOB="2.7_SLOW" TEST_ARGS="--only-slow --skip-network" SLOW=1
66
66
# In allow_failures
67
67
- dist : trusty
68
68
env :
@@ -82,7 +82,7 @@ matrix:
82
82
allow_failures :
83
83
- dist : trusty
84
84
env :
85
- - JOB="2.7_SLOW" TEST_ARGS="--only-slow --skip-network"
85
+ - JOB="2.7_SLOW" TEST_ARGS="--only-slow --skip-network" SLOW=1
86
86
- dist : trusty
87
87
env :
88
88
- JOB="2.7_BUILD_TEST" TEST_ARGS="--skip-slow" BUILD_TEST=true
Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ elif [ "$COVERAGE" ]; then
36
36
echo pytest -s -n 2 -m " not single" --cov=pandas --cov-report xml:/tmp/cov-multiple.xml --junitxml=/tmp/multiple.xml $TEST_ARGS pandas
37
37
pytest -s -n 2 -m " not single" --cov=pandas --cov-report xml:/tmp/cov-multiple.xml --junitxml=/tmp/multiple.xml $TEST_ARGS pandas
38
38
39
+ elif [ " $SLOW " ]; then
40
+ echo pytest -r xX -m " not single and slow" -v --junitxml=/tmp/multiple.xml $TEST_ARGS pandas
41
+ pytest -r xX -m " not single and slow" -v --junitxml=/tmp/multiple.xml $TEST_ARGS pandas
42
+
39
43
else
40
44
echo pytest -n 2 -r xX -m " not single" --junitxml=/tmp/multiple.xml $TEST_ARGS pandas
41
45
pytest -n 2 -r xX -m " not single" --junitxml=/tmp/multiple.xml $TEST_ARGS pandas # TODO: doctest
You can’t perform that action at this time.
0 commit comments