make coveralls optional in circle, ie if it fails, don't fail the whole build

pull/59/head
Ryan Barrett 2019-08-13 07:14:53 -07:00
rodzic 879f6d1752
commit 27b643355f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6BE31FDF4776E9D4
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -46,7 +46,7 @@ jobs:
python2 -m coverage html -d /tmp/coverage_html
# send coverage data to coveralls
if [ "$COVERALLS_REPO_TOKEN" != "" ]; then coveralls; fi
if [ "$COVERALLS_REPO_TOKEN" != "" ]; then coveralls || true; fi
- save_cache:
key: venv-{{ .Branch }}-{{ checksum "requirements.freeze.txt" }}