Skip to content

Commit

Permalink
Merge pull request #36 from Jeiwan/eftest_0.5.9
Browse files Browse the repository at this point in the history
Update eftest to 0.5.9
  • Loading branch information
Miikka Koskinen committed Nov 8, 2019
2 parents fa9edcf + a51066c commit 8fd4337
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Fast Clojure.test runner for [Boot](http://boot-clj.com/) and [Leiningen](https:
- Can optionally run tests parallel
- Can capture output and display the output just for the failing tests (`:capture-output?`, enabled by default)
- Can be configured to stop running tests after the first failure (`:fail-fast?`)
- Can run tests in deterministically random order (`:randomize-seed`, defaults to 0)
- Easy way to setup and combine eftest reporters:
- Built-in reporters can be referred by keywords `:pretty`, `:progress` and `:junit`
- Reporter can be map with `:type` (referring to reporter fn) and option `:output-to`
Expand Down
2 changes: 1 addition & 1 deletion build.boot
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(set-env!
:resource-paths #{"src"}
:dependencies '[[org.clojure/clojure "1.10.0" :scope "provided"]
[eftest "0.5.7" :scope "test"]
[eftest "0.5.9" :scope "test"]
[cloverage "1.1.1" :scope "test"]
[org.clojure/tools.namespace "0.3.0-alpha4" :scope "test"]])

Expand Down
2 changes: 1 addition & 1 deletion src/leiningen/bat_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[metosin.bat-test.version :refer [+version+]]))

(def profile {:dependencies [['metosin/bat-test +version+]
['eftest "0.5.4"]
['eftest "0.5.9"]
['org.clojure/tools.namespace "0.3.0-alpha4"]
['cloverage "1.0.13"]
['watchtower "0.1.1"]]})
Expand Down
2 changes: 1 addition & 1 deletion src/metosin/bat_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[metosin.bat-test.version :refer [+version+]]))

(def ^:private deps
[['eftest "0.5.4"]
[['eftest "0.5.9"]
['metosin/bat-test +version+]
['cloverage "1.0.13"]
['org.clojure/tools.namespace "0.3.0-alpha4"]])
Expand Down

0 comments on commit 8fd4337

Please sign in to comment.