We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 86dedde + 6150d64 commit 2b5344aCopy full SHA for 2b5344a
sample/project.clj
@@ -6,4 +6,5 @@
6
:dependencies [[org.clojure/clojure "1.5.1"]]
7
:main ^:skip-aot sample.core
8
:target-path "target/%s"
9
- :profiles {:uberjar {:aot :all}})
+ :profiles {:dev {:plugins [[test2junit "1.1.1"]]}}
10
+ :test2junit-output-dir "../shippable/testresults")
sample/test/sample/core_test.clj
@@ -5,3 +5,6 @@
5
(deftest a-test
(testing "Simple addition"
(is (= 15 (-main 5)))))
+
+(deftest add-1-to-1
+ (is (= 2 (+ 1 1))))
shippable.yml
@@ -12,4 +12,4 @@ before_script:
12
# Running the test with Leiningen
13
script:
14
- cd sample
15
- - lein test
+ - lein test2junit
0 commit comments