1
1

Merge pull request #154 from PQClean/detect_travis_Cron

Detect cron builds on Travis CI
Este cometimento está contido em:
Joost Rijneveld 2019-04-23 12:53:17 +02:00 cometido por GitHub
ascendente cf0a4dcd54 1a6f441f36
cometimento 85be522a16
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 4AEE18F83AFDEB23
2 ficheiros modificados com 6 adições e 3 eliminações

Ver ficheiro

@ -12,7 +12,8 @@ matrix:
- git checkout $TRAVIS_BRANCH
- git reset --hard $TRAVIS_COMMIT
script:
- "cd test && python3 -m nose --rednose --verbose"
# Use travis-wait to allow slower tests to run
- "cd test && travis_wait 30 python3 -m nose --rednose --verbose"
env:
PQCLEAN_ONLY_DIFF: 1
addons:
@ -41,7 +42,8 @@ matrix:
- ln -s /usr/local/bin/gcc-8 /usr/local/bin/gcc
- gcc --version
script:
- "cd test && python3 -m nose --rednose --verbose"
# Use travis-wait to allow slower tests to run
- "cd test && travis_wait 30 python3 -m nose --rednose --verbose"
cache: pip

Ver ficheiro

@ -85,7 +85,8 @@ def skip_windows(message="This test is not supported on Windows"):
def slow_test(f):
@functools.wraps(f)
def wrapper(*args, **kwargs):
if 'CI' in os.environ and 'RUN_SLOW' not in os.environ:
if ('CI' in os.environ and 'RUN_SLOW' not in os.environ and
os.environ.get('TRAVIS_EVENT_TYPE') != 'cron'):
raise unittest.SkipTest("Slow test skipped on CI run")
return f(*args, **kwargs)
return wrapper