diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000..23d13c5 --- /dev/null +++ b/circle.yml @@ -0,0 +1,7 @@ + test: + override: + - (echo "Running JUnit tests!") + - ./gradlew test -PdisablePreDex + post: + - mkdir -p $CIRCLE_TEST_REPORTS/junit/ + - find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;