From 25529ad95feee3af68bfd7456ada2bbef15f18cd Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 8 Mar 2019 21:54:40 +0100 Subject: [PATCH] use || for coveralls --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 424ac579c..d24ffcf1b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,13 +23,13 @@ install: - pip install -r requirements-dev.txt - pip install -e . jobs: - allow_failures: - - script: coveralls include: - stage: tests script: - pytest --cov=freqtrade --cov-config=.coveragerc freqtrade/tests/ + # Allow failure for coveralls + - coveralls || true name: pytest - script: - cp config.json.example config.json @@ -43,8 +43,6 @@ jobs: name: flake8 - script: mypy freqtrade name: mypy - - script: coveralls - name: "Coveralls" - stage: docker if: branch in (master, develop, feat/improve_travis) AND (type in (push, cron))