Skip to content

Commit a8186a5

Browse files
committed
Fix Cljdoc builds by moving "test" to alias.
If the tests directory is included in the main paths, but the test dependencies aren't, Cljdoc will try to analyze the test directory, which will fail due to missing dependencies.
1 parent d8adbbe commit a8186a5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

deps.edn

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{:paths ["resources" "src" "test"]
1+
{:paths ["resources" "src"]
22
:deps {fipp {:mvn/version "0.6.26"}
33
org.clojure/core.rrb-vector {:mvn/version "0.1.2"}
44
lambdaisland/clj-diff {:mvn/version "1.3.67"}
@@ -17,7 +17,8 @@
1717
:extra-paths ["../chui/resources" "../chui/dev"]}
1818

1919
:test
20-
{:extra-deps {lambdaisland/kaocha {:mvn/version "RELEASE"}
20+
{:extra-paths ["test"]
21+
:extra-deps {lambdaisland/kaocha {:mvn/version "RELEASE"}
2122
com.lambdaisland/kaocha-cljs {:mvn/version "1.2.123"}
2223
org.clojure/clojurescript {:mvn/version "1.11.50"}
2324
org.clojure/test.check {:mvn/version "1.1.1"}}}}}

0 commit comments

Comments
 (0)