Skip to content

Commit c1a526b

Browse files
committed
Fix exit code of ‘bb run test’
Tests were failing in CI but not causing the run to fail due to this
1 parent 98b9687 commit c1a526b

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

bb.edn

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
org.babashka/spec.alpha {:git/url "https://github.com/babashka/spec.alpha"
44
:git/sha "b6eb0f2208ab036c0a5d0e7235cb0b09d2feabb7"}}
55
:tasks
6-
{:requires ([babashka.deps :as deps]
7-
[docker-clojure.core :as dc])
6+
{:requires ([docker-clojure.core :as dc])
87
clean (dc/-main "clean")
98
dockerfiles {:depends [clean]
109
:task (apply dc/-main "dockerfiles" *command-line-args*)}
1110
manifest (apply dc/-main "manifest" *command-line-args*)
1211
build-images {:task (apply dc/-main "build-images" *command-line-args*)}
13-
test (deref (deps/clojure '-X:test))}}
12+
test (clojure '-X:test)}}

0 commit comments

Comments
 (0)