Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/espresso-devnet-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ jobs:
./scripts/prepare-allocs.sh
docker compose build

- name: Run Devnet tests
run: go test -timeout 30m -p 1 -count 1 -v ./espresso/devnet-tests/...
# - name: Run Devnet tests
# run: go test -timeout 30m -p 1 -count 1 -v ./espresso/devnet-tests/...

- name: Save Nix cache
uses: nix-community/cache-nix-action/save@v6
Expand Down
5 changes: 5 additions & 0 deletions README_ESPRESSO.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ To run a subset of the tests above (fast):
> just fast-tests
```

To run the devnet tests:
```console
> just devnet-tests
```

### Run the Kurtosis devnet

- Install tools.
Expand Down
4 changes: 2 additions & 2 deletions espresso/docker/l1-geth/beacon-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ DENEB_FORK_EPOCH: 0
ELECTRA_FORK_VERSION: 0x05000000
ELECTRA_FORK_EPOCH: 0

SECONDS_PER_SLOT: 1
SECONDS_PER_ETH1_BLOCK: 1
SECONDS_PER_SLOT: 3
SECONDS_PER_ETH1_BLOCK: 14
MIN_VALIDATOR_WITHDRAWABILITY_DELAY: 32
SHARD_COMMITTEE_PERIOD: 4
ETH1_FOLLOW_DISTANCE: 2048
Expand Down
7 changes: 7 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ tests:
fast-tests:
./run_fast_tests.sh

devnet-tests: build-devnet
go test -timeout 30m -p 1 -count 1 -v ./espresso/devnet-tests/...

build-devnet: compile-contracts
(cd op-deployer && just)
(cd espresso && ./scripts/prepare-allocs.sh && docker compose build)

golint:
golangci-lint run -E goimports,sqlclosecheck,bodyclose,asciicheck,misspell,errorlint --timeout 5m -e "errors.As" -e "errors.Is" ./...

Expand Down
Loading