Browse Source

Pass JUnit results to circle.

pull/99/head
Chris Smith 8 years ago
parent
commit
1063ffd54d
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      circle.yml

+ 3
- 0
circle.yml View File

@@ -27,6 +27,9 @@ test:
27 27
       else
28 28
         ./gradlew --stacktrace jar test client:fatjar;
29 29
       fi
30
+  post:
31
+    - mkdir -p $CIRCLE_TEST_REPORTS/junit/
32
+    - find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
30 33
 
31 34
 general:
32 35
   artifacts:

Loading…
Cancel
Save