From f561e310852bdc24c2c12a403a189ce9c191bf61 Mon Sep 17 00:00:00 2001 From: Giulio Ungaretti Date: Mon, 24 Oct 2016 17:01:32 +0200 Subject: [PATCH] fix: Remove fail fast on travis. The -f flag does not behave as intended on travis. See #362. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b6645af1d70..515345b1480 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,8 +18,8 @@ install: - python setup.py develop # command to run tests script: - - python qcodes/test.py --skip-coverage -f - - python qcodes/test.py --mp-spawn -f + - python qcodes/test.py --skip-coverage + - python qcodes/test.py --mp-spawn after_success: # install codacy coverage plugin only on traivs - pip install codacy-coverage