Skip to content

Commit 444fbce

Browse files
committed
fix(makefile): hardcode era for test-env setup
The test-env Makefile target now always sets up the environment for the 'conway' era, removing the need to specify 'era=conway' as a parameter. Updated the README to reflect this usage change for consistency and clarity.
1 parent 88d216d commit 444fbce

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ reinstall-editable:
2020
# set up test environment
2121
.PHONY: test-env
2222
test-env:
23-
@if [ -z "$(era)" ]; then \
24-
echo "Usage: make test-env era=conway" >&2; \
25-
exit 1; \
26-
fi
27-
@./scripts/setup_test_env.sh "$(era)"
23+
@./scripts/setup_test_env.sh conway
2824

2925
# initialize linters
3026
.PHONY: init_lint

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ For workflows requiring repeated test runs on a persistent testnet cluster:
8080
2. Set up the local test environment:
8181

8282
```sh
83-
make test-env era=conway
83+
make test-env
8484
```
8585

8686
3. Activate the environment:

0 commit comments

Comments
 (0)