Last active
February 10, 2017 10:48
-
-
Save adieuadieu/a2259197c4c36072f67bc39f2c91e88b to your computer and use it in GitHub Desktop.
Collecting test metadata in CircleCI with Ava
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test: | |
override: | |
- mkdir -p $CIRCLE_TEST_REPORTS/reports | |
- eslint --format junit src/ > $CIRCLE_TEST_REPORTS/reports/eslint.xml | |
- ava --tap | tap-xunit > $CIRCLE_TEST_REPORTS/reports/ava.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gist used in the blog post at https://medium.com/@marco.luethy/collecting-test-metadata-in-circleci-with-ava-1cedce8fcf14