Skip to content

Commit 777f5c9

Browse files
committed
:test-selectors: default to running all tests
This is safer, especially for the CI integration.
1 parent 5239e5b commit 777f5c9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

project.clj

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@
1111
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
1212
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
1313
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}}
14-
:test-selectors {:default #(not (:integration %))
15-
:integration :integration
16-
:all (constantly true)}
14+
:test-selectors {:default (constantly true)
15+
:all (constantly true)
16+
:unit #(not (:integration %))
17+
:integration :integration}
1718
:aliases {"all" ["with-profile" "dev,1.4:dev,1.5:dev,1.6:dev,1.7:dev,1.8:dev,1.9"]}
1819
:checksum-deps true)

0 commit comments

Comments
 (0)