Skip to content
Open
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
2 changes: 1 addition & 1 deletion docs/wake-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
"properties": {
"cmd": {
"type": "string",
"enum": ["anvil", "hardhat"],
"enum": ["revm", "anvil", "hardhat"],
"default": "anvil",
"description": "Which development chain to use for testing"
},
Expand Down
4 changes: 0 additions & 4 deletions wake/cli/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ def shell_complete(
help="Increase verbosity. Can be specified multiple times.",
)
@click.option(
"-RS",
"--random-state",
type=str,
help="Input random state json path.",
Expand All @@ -100,7 +99,6 @@ def shell_complete(
required=False,
)
@click.option(
"-SH",
"--shrink",
# Didn't use click.Path since we accept relative index of crash log file
type=str,
Expand All @@ -126,9 +124,7 @@ def shell_complete(
help="When shrinking, check only target invariants for faster fuzzing.",
)
@click.option(
"-SR",
"--shrunk",
"--shrank",
"--reproduce",
# Didn't use click.Path since we accept relative index of crash log file
type=str,
Expand Down
3 changes: 2 additions & 1 deletion wake/config/data_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,8 @@ class TestingConfig(WakeConfigModel):
"""
cmd: str = "anvil"
"""
Which development chain to use for testing. Should be either `anvil` or `hardhat`.
Which development chain to use for testing. Should be one of `revm`, `anvil`, or
`hardhat`.
"""
anvil: AnvilConfig = Field(default_factory=AnvilConfig)
"""
Expand Down
Loading