We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a90c49 commit e653eb3Copy full SHA for e653eb3
2 files changed
.github/workflows/bb.yml
@@ -49,6 +49,4 @@ jobs:
49
50
- name: Execute bb tests
51
run: |
52
- bb --version
53
- bb -e '(babashka.classpath/get-classpath)'
54
bb test:bb
bb.edn
@@ -1,9 +1,12 @@
1
-{:deps
+{:paths ["src" "test"]
2
+ :deps
3
{lambdaisland/open-source {:git/url "https://github.com/lambdaisland/open-source"
4
:git/sha "f2133b2a88bff3898e027c9b50516161c237792e"}}
5
:tasks
6
{test:bb {:doc "Run babashka tests with custom runner"
- :extra-paths ["src" "test"]
7
+ ;; :extra-paths ["src" "test"]
8
:extra-deps {current/project {:local/root "."}
9
org.clojure/test.check {:mvn/version "1.1.1"}}
- :task (exec 'lambdaisland.deep-diff2.runner/run-tests)}}}
10
+ :task (do
11
+ (prn (babashka.classpath/get-classpath))
12
+ (exec 'lambdaisland.deep-diff2.runner/run-tests))}}}
0 commit comments