Allow for longer periods of no output during R tests

pull/308/head
Tim Head 2018-05-11 23:13:18 +02:00
rodzic 8861382a76
commit 72292061d2
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -16,7 +16,11 @@ install:
script:
# cd into tests so CWD being repo2docker does not hide
# possible issues with MANIFEST.in
- cd tests && travis_retry pytest --cov repo2docker -v ${REPO_TYPE}
- if [ ${REPO_TYPE} == "r" ];
then cd tests && travis_wait pytest --cov repo2docker -v ${REPO_TYPE};
else cd tests && travis_retry pytest --cov repo2docker -v ${REPO_TYPE};
fi
after_success:
- pip install codecov
- codecov