@cryptotaxi247 / kubo / commits / ad8c51b7f

ci: avoid interleaving output from different sharness tests

The `-O` option causes make to print out all the output from a single target all at once. This will make the test log readable again. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>

Steven Allen committed Apr 3, 2019 at 15:16 UTC ad8c51b7ff6aa362733a069e10562142614e7581
1 file changed +1 -1
.circleci/config.yml
+1 -1
@@ -72,7 +72,7 @@ jobs:
72 - *make_out_dirs
73 - *restore_gomod
74
75 - - run: make -j 10 coverage/sharness_tests.coverprofile test/sharness/test-results/sharness.xml TEST_GENERATE_JUNIT=1 CONTINUE_ON_S_FAILURE=1
75 + - run: make -O -j 10 coverage/sharness_tests.coverprofile test/sharness/test-results/sharness.xml TEST_GENERATE_JUNIT=1 CONTINUE_ON_S_FAILURE=1
76
77 - run:
78 when: always