@@ -34,28 +34,28 @@ matrix:
3434 include :
3535 - dist : trusty
3636 env :
37- - JOB="3.7" ENV_FILE="ci/deps/travis-37.yaml" TEST_ARGS="--skip- slow --skip- network"
37+ - JOB="3.7" ENV_FILE="ci/deps/travis-37.yaml" PATTERN="not slow and not network"
3838
3939 - dist : trusty
4040 env :
41- - JOB="2.7, locale, slow, old NumPy" ENV_FILE="ci/deps/travis-27-locale.yaml" LOCALE_OVERRIDE="zh_CN.UTF-8" SLOW=true
41+ - JOB="2.7, locale, slow, old NumPy" ENV_FILE="ci/deps/travis-27-locale.yaml" LOCALE_OVERRIDE="zh_CN.UTF-8" PATTERN="slow"
4242 addons :
4343 apt :
4444 packages :
4545 - language-pack-zh-hans
4646 - dist : trusty
4747 env :
48- - JOB="2.7" ENV_FILE="ci/deps/travis-27.yaml" TEST_ARGS="--skip- slow"
48+ - JOB="2.7" ENV_FILE="ci/deps/travis-27.yaml" PATTERN="not slow"
4949 addons :
5050 apt :
5151 packages :
5252 - python-gtk2
5353 - dist : trusty
5454 env :
55- - JOB="3.6, lint, coverage" ENV_FILE="ci/deps/travis-36.yaml" TEST_ARGS="--skip- slow --skip- network" PANDAS_TESTING_MODE="deprecate" COVERAGE=true LINT=true
55+ - JOB="3.6, lint, coverage" ENV_FILE="ci/deps/travis-36.yaml" PATTERN="not slow and not network" PANDAS_TESTING_MODE="deprecate" COVERAGE=true LINT=true
5656 - dist : trusty
5757 env :
58- - JOB="3.7, NumPy dev" ENV_FILE="ci/deps/travis-37-numpydev.yaml" TEST_ARGS="--skip- slow --skip- network -W error" PANDAS_TESTING_MODE="deprecate"
58+ - JOB="3.7, NumPy dev" ENV_FILE="ci/deps/travis-37-numpydev.yaml" PATTERN="not slow and not network" TEST_ARGS=" -W error" PANDAS_TESTING_MODE="deprecate"
5959 addons :
6060 apt :
6161 packages :
@@ -64,7 +64,7 @@ matrix:
6464 # In allow_failures
6565 - dist : trusty
6666 env :
67- - JOB="3.6, slow" ENV_FILE="ci/deps/travis-36-slow.yaml" SLOW=true
67+ - JOB="3.6, slow" ENV_FILE="ci/deps/travis-36-slow.yaml" PATTERN="slow"
6868
6969 # In allow_failures
7070 - dist : trusty
@@ -73,7 +73,7 @@ matrix:
7373 allow_failures :
7474 - dist : trusty
7575 env :
76- - JOB="3.6, slow" ENV_FILE="ci/deps/travis-36-slow.yaml" SLOW=true
76+ - JOB="3.6, slow" ENV_FILE="ci/deps/travis-36-slow.yaml" PATTERN="slow"
7777 - dist : trusty
7878 env :
7979 - JOB="3.6, doc" ENV_FILE="ci/deps/travis-36-doc.yaml" DOC=true
@@ -107,20 +107,16 @@ script:
107107 - echo "script start"
108108 - source activate pandas-dev
109109 - ci/run_build_docs.sh
110- - ci/script_single.sh
111- - ci/script_multi.sh
110+ - ci/run_tests.sh
112111 - ci/code_checks.sh
113112
114- after_success :
115- - ci/upload_coverage.sh
116-
117113after_script :
118114 - echo "after_script start"
119115 - source activate pandas-dev && pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd
120116 - if [ -e test-data-single.xml ]; then
121- ci/print_skipped.py test-data-single.xml;
117+ ci/print_skipped.py test-data-single.xml;
122118 fi
123119 - if [ -e test-data-multiple.xml ]; then
124- ci/print_skipped.py test-data-multiple.xml;
120+ ci/print_skipped.py test-data-multiple.xml;
125121 fi
126122 - echo "after_script done"
0 commit comments