Skip to content

Commit 945f3ee

Browse files
Ignore rotate batcher key and change batch inbox owmer tests.
1 parent 8b33a17 commit 945f3ee

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/espresso-devnet-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
docker compose build
5252
5353
- name: Run Devnet tests
54-
run: go test -timeout 30m -p 1 -count 1 -v ./espresso/devnet-tests/...
54+
run: go test -timeout 30m -p 1 -count 1 -skip 'TestRotateBatcherKey|TestChangeBatchInboxOwner' -v ./espresso/devnet-tests/...
5555

5656
- name: Save Nix cache
5757
uses: nix-community/cache-nix-action/save@v6

justfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fast-tests:
66
./run_fast_tests.sh
77

88
devnet-tests: build-devnet
9-
go test -timeout 30m -p 1 -count 1 -v ./espresso/devnet-tests/...
9+
go test -timeout 30m -p 1 -count 1 -skip 'TestRotateBatcherKey|TestChangeBatchInboxOwner' -v ./espresso/devnet-tests/...
1010

1111
build-devnet: compile-contracts
1212
rm -Rf espresso/deployment
@@ -63,6 +63,9 @@ smoke-tests: compile-contracts
6363
nuke:
6464
make nuke
6565

66+
# Stop the containers
67+
stop-containers:
68+
(cd espresso && docker compose down -v)
6669

6770
# Checks that TODO comments have corresponding issues.
6871
todo-checker:

0 commit comments

Comments
 (0)