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:
70
70
after_script :
71
71
- ci/print_versions.py
72
72
- ci/print_skipped.py /tmp/nosetests.xml
73
- - ci/print_versions.py -j /tmp/env.json
74
73
- ci/after_script.sh
Original file line number Diff line number Diff line change 2
2
3
3
wget https://raw.github.com/y-p/ScatterCI-CLI/master/scatter_cli.py
4
4
chmod u+x scatter_cli.py
5
- echo ' ' > /tmp/build.log
5
+
6
6
pip install -I requests==2.1.0
7
7
echo " ${TRAVIS_PYTHON_VERSION: 0: 4} "
8
8
if [ x" ${TRAVIS_PYTHON_VERSION: 0: 4} " == x" 2.6" ]; then
9
9
pip install simplejson;
10
10
fi
11
11
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
12
25
python scatter_cli.py --xunit-file /tmp/nosetests.xml --log-file /tmp/build.log --env-file /tmp/env.json --succeed
13
26
14
27
true # never fail because bad things happened here
You can’t perform that action at this time.
0 commit comments