Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update eftest to 0.5.9 #36

Merged
merged 1 commit into from
Nov 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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