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
       else
27
       else
28
         ./gradlew --stacktrace jar test client:fatjar;
28
         ./gradlew --stacktrace jar test client:fatjar;
29
       fi
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
 general:
34
 general:
32
   artifacts:
35
   artifacts:

Loading…
Cancel
Save