diff --git a/.gitignore b/.gitignore index 4e92365..1f14e58 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ pom.xml.asc .repl* dev/resources/public/js/* figwheel_server.log +build.xml *.jar *.class /.lein-* diff --git a/circle.yml b/circle.yml index b6de089..a07a0ea 100644 --- a/circle.yml +++ b/circle.yml @@ -7,3 +7,4 @@ test: - lein do clean, test - lein do clean, doo phantom test once - lein do clean, cljsbuild once prod + - lein test2junit diff --git a/project.clj b/project.clj index 2818bda..1c039ba 100644 --- a/project.clj +++ b/project.clj @@ -23,7 +23,10 @@ :plugins [[lein-cljsbuild "1.1.1"] [lein-doo "0.1.6"] - [lein-figwheel "0.5.0-2"]] + [lein-figwheel "0.5.0-2"] + [test2junit "1.1.3"]] + + :test2junit-output-dir ~(or (System/getenv "CIRCLE_TEST_REPORTS") "target/test2junit") :clean-targets ^{:protect false} [:target-path [:cljsbuild :builds :dev :compiler :output-dir]