-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbb.edn
More file actions
22 lines (20 loc) · 622 Bytes
/
bb.edn
File metadata and controls
22 lines (20 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{:paths ["bb"]
:tasks
{test:bb-trove
{:doc "Run standard Trove tests with babashka"
:extra-paths ["src" "test"]
:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:task (exec 'cognitect.test-runner.api/test)
:exec-args {:patterns [".*-tests$"]}}
test:bb
{:doc "Run babashka-specific tests"
:extra-paths ["src" "test"]
:task (load-file "test/taoensso/bb_tests.bb")}
graal-tests
{:doc "Run Graal native-image tests"
:requires ([graal-tests])
:task
(do
(graal-tests/uberjar)
(graal-tests/native-image)
(graal-tests/run-tests))}}}