File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -70,5 +70,4 @@ script:
7070after_script :
7171 - ci/print_versions.py
7272 - ci/print_skipped.py /tmp/nosetests.xml
73- - ci/print_versions.py -j /tmp/env.json
7473 - ci/after_script.sh
Original file line number Diff line number Diff line change 22
33wget https://raw.github.com/y-p/ScatterCI-CLI/master/scatter_cli.py
44chmod u+x scatter_cli.py
5- echo ' ' > /tmp/build.log
5+
66pip install -I requests==2.1.0
77echo " ${TRAVIS_PYTHON_VERSION: 0: 4} "
88if [ x" ${TRAVIS_PYTHON_VERSION: 0: 4} " == x" 2.6" ]; then
99 pip install simplejson;
1010fi
1111
12+ # ScatterCI accepts a build log, but currently does nothing with it.
13+ echo ' ' > /tmp/build.log
14+
15+ # These should be in the environment, but not in source control
16+ # nore exposed in the build logs
17+ # export SCATTERCI_ACCESS_KEY=
18+ # export SCATTERCI_HOST=
19+
20+ # Generate a json file describing system and dep versions
21+ ci/print_versions.py -j /tmp/env.json
22+
23+ # nose ran using "--with-xunit --xunit-file nosetest.xml" and generated /tmp/nosetest.xml
24+ # Will timeout if server not available, and should not fail the build
1225python scatter_cli.py --xunit-file /tmp/nosetests.xml --log-file /tmp/build.log --env-file /tmp/env.json --succeed
1326
1427true # never fail because bad things happened here
You can’t perform that action at this time.
0 commit comments