Skip to content

Commit

Permalink
Storing test results as artifacts in CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroRivera committed Nov 25, 2016
1 parent 105200f commit d36723d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions circle.yml
Expand Up @@ -8,3 +8,7 @@ test:
override:
- erl -eval 'erlang:display(erlang:system_info(otp_release)), halt().' -noshell
- mvn clean install

post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;

0 comments on commit d36723d

Please sign in to comment.