From 0ffce2e938308fde803b93ed2e29d22b3eb5cd54 Mon Sep 17 00:00:00 2001 From: Marcus Eriksson Date: Wed, 30 Aug 2017 13:34:52 +0200 Subject: [PATCH] Only collect test xml where it exists Patch by marcuse; reviewed by Eduard Tudenhoefner for CASSANDRA-13807 --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index f4db2799c2..0c3f86be6e 100644 --- a/circle.yml +++ b/circle.yml @@ -13,6 +13,6 @@ test: post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/: parallel: true - - find ./build/test/output/ -iname "*.xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;: + - case $CIRCLE_NODE_INDEX in [0123]) find ./build/test/output/ -iname "*.xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; ;;esac: parallel: true