Skip to content

Commit

Permalink
-midje
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchy64 committed Apr 23, 2024
1 parent e740c7b commit f5b7215
Show file tree
Hide file tree
Showing 17 changed files with 2,001 additions and 1,909 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
with:
lein: latest
- name: Run tests
run: lein do clean, all midje, all check
run: lein do clean, all test, all check
deploy:
concurrency: deploy
needs: test
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ See also: [compojure-api 1.1.x changelog](./CHANGELOG-1.1.x.md)
* Add static context optimization coach
* `-Dcompojure.api.meta.static-context-coach=print` to print hints
* `-Dcompojure.api.meta.static-context-coach=assert` to assert hints
* port unit tests from midje to clojure.test

## 2.0.0-alpha31 (2019-12-20)

Expand Down
6 changes: 2 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,12 @@
[reloaded.repl "0.2.4"]
[com.stuartsierra/component "0.4.0"]]}
:dev {:plugins [[lein-clojars "0.9.1"]
[lein-midje "3.2.1"]
[lein-ring "0.12.5"]
[funcool/codeina "0.5.0"]]
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/core.async "0.6.532"]
[javax.servlet/javax.servlet-api "4.0.1"]
[peridot "0.5.2"]
[midje "1.9.9"]
[com.rpl/specter "1.1.3"]
[com.stuartsierra/component "0.4.0"]
[expound "0.8.2"]
Expand Down Expand Up @@ -90,7 +88,7 @@
:aliases {"all" ["with-profile" "dev:dev,async"]
"start-thingie" ["run"]
"aot-uberjar" ["with-profile" "uberjar" "do" "clean," "ring" "uberjar"]
"test-ancient" ["midje"]
"test-ancient" ["test"]
"perf" ["with-profile" "default,dev,perf"]
"deploy!" ^{:doc "Recompile sources, then deploy if tests succeed."}
["do" ["clean"] ["midje"] ["deploy" "clojars"]]})
["do" ["clean"] ["test"] ["deploy" "clojars"]]})
Loading

0 comments on commit f5b7215

Please sign in to comment.