diff options
author | Mats Wichmann <mats@linux.com> | 2019-03-04 16:52:54 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2019-03-04 16:52:54 (GMT) |
commit | 9e857aa8197bc12b7309527e10b2a31bd9601f59 (patch) | |
tree | dc5b98fe216c4a0034fefd10641366ee30390cc7 /.travis.yml | |
parent | 3f3edd29e1f69b5b50c27439cf59286887a9178f (diff) | |
download | SCons-9e857aa8197bc12b7309527e10b2a31bd9601f59.zip SCons-9e857aa8197bc12b7309527e10b2a31bd9601f59.tar.gz SCons-9e857aa8197bc12b7309527e10b2a31bd9601f59.tar.bz2 |
[PYPY] travis run pypy jobs with -j 3
The pypy test runs are markedly slower; try multi-job runs to see
if they speed up enough to not time out our overall build.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 6bc50c3..2609069 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,7 @@ jobs: include: - &test_job stage: Test - script: python runtest.py -a || if [[ $? == 2 ]]; then true; else false; fi + script: python runtest.py -a -t || if [[ $? == 2 ]]; then true; else false; fi before_script: skip after_success: skip python: 2.7 @@ -61,14 +61,18 @@ jobs: sudo: required dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069) - - <<: *test_job + - &slow_test_job + stage: Test + script: python runtest.py -a -j 3 -t || if [[ $? == 2 ]]; then true; else false; fi + before_script: skip + after_success: skip python: pypy2 env: - PYVER=pypy - PYTHON=pypy sudo: required - - <<: *test_job + - <<: *slow_test_job python: pypy3 env: - PYVER=pypy3 |