Skip to content

Commit

Permalink
feat: add just test-all
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Apr 17, 2024
1 parent fd11a74 commit 90e7b15
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions justfile.local.just
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,13 @@ test-py-async:
test-go:
cd wrappers/fedimint-go && go run cmd/main.go

test-all:
set -e
(just test-ts && echo "test-ts completed successfully") &
(just test-py && echo "test-py completed successfully") &
(just test-py-async && echo "test-py-async completed successfully") &
(just test-go && echo "test-go completed successfully") &
wait

wscat:
mprocs -c mprocs-wscat.yaml

0 comments on commit 90e7b15

Please sign in to comment.