Skip to content

Commit 94eab87

Browse files
committed
try coverage
1 parent 50ddc35 commit 94eab87

4 files changed

Lines changed: 9 additions & 37 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ jobs:
6969
run: |
7070
npx shadow-cljs compile node
7171
72+
- name: Tentative coverage
73+
#run: ./bin/kaocha test-cljs
74+
run: |
75+
sudo apt install -y lcov
76+
bin/run-coverage || true
77+
7278
- name: Test Reports
7379
uses: mikepenz/action-junit-report@v5
7480
if: failure()

.github/workflows/earthly.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

src/intemporal/store.cljc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
(reenqueue-pending-tasks [this callback]
3434
"Marks all pending tasks belonging to the store's `owner` as `new`")
3535
(release-pending-tasks [this]
36-
"Disowns all tasks that are pending")
36+
"Disowns all tasks that are pending for the store's `owner`, making them available")
3737
(enqueue-task [this task]
3838
"Atomically enqueues a protocol, workflow or activity task execution")
3939
(dequeue-task [this] [this opts]

tests.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
;:cljs/timeout 20000
4343
:ns-patterns ["-test$"]
4444
:source-paths ["src"]
45-
:test-paths ["test"]
46-
}]}
45+
:test-paths ["test"]}]}
46+
4747

4848
;; :test-paths ["test"]
4949
;; :cljs/timeout 10000 ; 10 seconds, the default

0 commit comments

Comments
 (0)