Skip to content

Commit

Permalink
Issue #000 fix: circle-ci changes to show errors better.
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshkumargangula committed Jul 23, 2021
1 parent 5905090 commit 2e62f0c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,18 @@ jobs:
- run:
name: Setup environment and run tests
command: bash vmsetup.sh
- run:
name: Save test results
command: |
mkdir -p ~/test-results/junit/
find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} ~/test-results/junit/ \;
when: always
- save_cache:
paths:
- ~/.m2
key: kp-dependency-test-cache-{{ checksum "pom.xml" }}
- store_test_results:
path: ~/test-results

workflows:
version: 2.1
Expand Down

0 comments on commit 2e62f0c

Please sign in to comment.