Only retry failed tests on Circle CI instead of all.

Retrying all tests is more likely to result in a different set of tests
failing the second time. This change makes sure only the failed tests are
retried.
This commit is contained in:
iphydf 2017-01-19 18:31:09 +00:00
parent 995578f103
commit f185834e9a
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9

View File

@ -41,5 +41,4 @@ compile:
test: test:
override: override:
- make VERBOSE=1 test ; ex1=$? ; if [ $ex1 -ne 0 ]; then sleep 60; make VERBOSE=1 test ; exit $? ; fi - make VERBOSE=1 test || make VERBOSE=1 ARGS="--rerun-failed" test