diff options
author | chriseth <c@ethdev.com> | 2016-08-01 21:33:01 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-08-01 22:49:19 +0800 |
commit | 82d113680c47b7916d2d8fb7c9b94d0370777c85 (patch) | |
tree | 0f79bbde2240046a93ff7de2b02746aaa7789724 /.travis.yml | |
parent | 08c6a4e7ba330b02f394224cf1593f96db6be554 (diff) | |
download | dexon-solidity-82d113680c47b7916d2d8fb7c9b94d0370777c85.tar.gz dexon-solidity-82d113680c47b7916d2d8fb7c9b94d0370777c85.tar.zst dexon-solidity-82d113680c47b7916d2d8fb7c9b94d0370777c85.zip |
Run the tests only three times.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 87932e8d..b723f81c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -82,15 +82,9 @@ before_script: && ./scripts/release.sh $ZIP_SUFFIX script: # There are a variety of reliability issues with the Solidity unit-tests at the time of - # writing, so we're actually running them 5 times in a row, to try to flush all of these + # writing, so we're actually running them 3 times in a row, to try to flush all of these # issues out as quickly as possible. See https://github.com/ethereum/solidity/issues/769 - - cd $TRAVIS_BUILD_DIR && ./scripts/tests.sh - - cd $TRAVIS_BUILD_DIR && ./scripts/tests.sh - - cd $TRAVIS_BUILD_DIR && ./scripts/tests.sh - - cd $TRAVIS_BUILD_DIR && ./scripts/tests.sh - - cd $TRAVIS_BUILD_DIR && ./scripts/tests.sh -after_success: - - cd $TRAVIS_BUILD_DIR && ./scripts/docs.sh + - cd $TRAVIS_BUILD_DIR && (./scripts/tests.sh || ./scripts/tests.sh || ./scripts/tests.sh) env: global: - ENCRYPTION_LABEL="296c219a3f41" |