File tree Expand file tree Collapse file tree 3 files changed +6
-12
lines changed Expand file tree Collapse file tree 3 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ language: python
3
3
env :
4
4
global :
5
5
# scatterci API key
6
- - secure : " Bx5umgo6WjuGY+5XFa004xjCiX/vq0CyMZ/ETzcs7EIBI1BE/0fIDXOoWhoxbY9HPfdPGlDnDgB9nGqr5wArO2s+BavyKBWg6osZ3dmkfuJPMOWeyCa92EeP+sfKw8e5HSU5MizW9e319wHWOF/xkzdHR7T67Qd5erhv91x4DnQ="
6
+ # - secure: "Bx5umgo6WjuGY+5XFa004xjCiX/vq0CyMZ/ETzcs7EIBI1BE/0fIDXOoWhoxbY9HPfdPGlDnDgB9nGqr5wArO2s+BavyKBWg6osZ3dmkfuJPMOWeyCa92EeP+sfKw8e5HSU5MizW9e319wHWOF/xkzdHR7T67Qd5erhv91x4DnQ="
7
7
# ironcache API key
8
8
- secure : " e4eEFn9nDQc3Xa5BWYkzfX37jaWVq89XidVX+rcCNEr5OlOImvveeXnF1IzbRXznH4Sv0YsLwUd8RGUWOmyCvkONq/VJeqCHWtTMyfaCIdqSyhIP9Odz8r9ahch+Y0XFepBey92AJHmlnTh+2GjCDgIiqq4fzglojnp56Vg1ojA="
9
9
- secure : " CjmYmY5qEu3KrvMtel6zWFEtMq8ORBeS1S1odJHnjQpbwT1KY2YFZRVlLphfyDQXSz6svKUdeRrCNp65baBzs3DQNA8lIuXGIBYFeJxqVGtYAZZs6+TzBPfJJK798sGOj5RshrOJkFG2rdlWNuTq/XphI0JOrN3nPUkRrdQRpAw="
@@ -51,13 +51,15 @@ matrix:
51
51
- JOB_NAME : " 27_numpy_master"
52
52
- JOB_TAG=_NUMPY_DEV_master
53
53
- NUMPY_BUILD=master
54
+ - PANDAS_TESTING_MODE="numpy_deprecate"
54
55
allow_failures :
55
56
- python : 2.7
56
57
env :
57
58
- NOSE_ARGS="not slow and not network and not disabled"
58
59
- JOB_NAME : " 27_numpy_master"
59
60
- JOB_TAG=_NUMPY_DEV_master
60
61
- NUMPY_BUILD=master
62
+ - PANDAS_TESTING_MODE="numpy_deprecate"
61
63
62
64
# allow importing from site-packages,
63
65
# so apt-get python-x works for system pythons
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- wget https://raw.github.com/y-p/ScatterCI-CLI/master/scatter_cli.py
4
- chmod u+x scatter_cli.py
3
+ # wget https://raw.github.com/y-p/ScatterCI-CLI/master/scatter_cli.py
4
+ # chmod u+x scatter_cli.py
5
5
6
6
pip install -I requests==2.1.0
7
7
echo " ${TRAVIS_PYTHON_VERSION: 0: 4} "
12
12
# ScatterCI accepts a build log, but currently does nothing with it.
13
13
echo ' ' > /tmp/build.log
14
14
15
- # These should be in the environment, but not in source control
16
15
# nore exposed in the build logs
17
16
# export SCATTERCI_ACCESS_KEY=
18
17
# export SCATTERCI_HOST=
@@ -22,6 +21,6 @@ ci/print_versions.py -j /tmp/env.json
22
21
23
22
# nose ran using "--with-xunit --xunit-file nosetest.xml" and generated /tmp/nosetest.xml
24
23
# Will timeout if server not available, and should not fail the build
25
- python scatter_cli.py --xunit-file /tmp/nosetests.xml --log-file /tmp/build.log --env-file /tmp/env.json --build-name " $JOB_NAME " --succeed
24
+ # python scatter_cli.py --xunit-file /tmp/nosetests.xml --log-file /tmp/build.log --env-file /tmp/env.json --build-name "$JOB_NAME" --succeed
26
25
27
26
true # never fail because bad things happened here
Original file line number Diff line number Diff line change 16
16
" $TRAVIS_BUILD_DIR " /ci/build_docs.sh 2>&1 > /tmp/doc.log &
17
17
# doc build log will be shown after tests
18
18
19
- # export the testing mode
20
- if [ -n " $NUMPY_BUILD " ]; then
21
-
22
- export PANDAS_TESTING_MODE=" numpy_deprecate"
23
-
24
- fi
25
-
26
19
echo nosetests --exe -w /tmp -A " $NOSE_ARGS " pandas --with-xunit --xunit-file=/tmp/nosetests.xml
27
20
nosetests --exe -w /tmp -A " $NOSE_ARGS " pandas --with-xunit --xunit-file=/tmp/nosetests.xml
28
21
You can’t perform that action at this time.
0 commit comments