diff options
author | Daniel Moody <dmoody256@gmail.com> | 2017-12-09 19:05:21 (GMT) |
---|---|---|
committer | Daniel Moody <dmoody256@gmail.com> | 2017-12-09 19:05:21 (GMT) |
commit | 2ea302bf92097955818388649f70557f964b8007 (patch) | |
tree | 970658cf6c9fc14832f4a03e3e2a8644febc535d /.travis.yml | |
parent | 4fcdce1a9ba1a2701df19b553f36e3461b0c8c08 (diff) | |
download | SCons-2ea302bf92097955818388649f70557f964b8007.zip SCons-2ea302bf92097955818388649f70557f964b8007.tar.gz SCons-2ea302bf92097955818388649f70557f964b8007.tar.bz2 |
needed to write the JobTest.py to the exclude list
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 1192edd..a6b2102 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,7 @@ script: # then it is a real failure not related to intermittent travis failures - n=0; while [[ $n -lt 10 ]]; do coverage run --rcfile=$PWD/.coveragerc runtest.py src/engine/SCons/JobTests.py && break; n=$((n+1)); done; if [ "$n" -gt "9" ]; then false; fi # exclude JobTest.py becuase we already ran that + - echo "src/engine/SCons/JobTests.py" > exclude.test - coverage run --rcfile=$PWD/.coveragerc runtest.py -a --exclude-list exclude.test || if [[ $? == 2 ]]; then true; else false; fi after_success: |