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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Test execution plugin for pytest, to run Ethereum tests using in live networks.
Test execution plugin for pytest, to run Ethereum tests on live networks.
"""

import os
Expand Down Expand Up @@ -74,7 +74,7 @@ def pytest_addoption(parser: pytest.Parser) -> None:
default=None,
help=(
"Default max priority fee per gas used for transactions, "
"unless overridden by the test."
"unless overridden by the test. "
"Default=None (1.5x current network max priority fee per gas)"
),
)
Expand All @@ -85,7 +85,7 @@ def pytest_addoption(parser: pytest.Parser) -> None:
type=int,
default=None,
help=(
"Default max fee per blob gas used for transactions, unless overridden by the test."
"Default max fee per blob gas used for transactions, unless overridden by the test. "
"Default=None (1.5x current network max fee per blob gas)"
),
)
Expand All @@ -97,7 +97,7 @@ def pytest_addoption(parser: pytest.Parser) -> None:
type=int,
help=(
"Maximum gas used to execute a single transaction. "
"Will be used as ceiling for tests that attempt to consume the entire block gas limit."
"Will be used as ceiling for tests that attempt to consume the entire block gas limit. "
f"(Default: {EnvironmentDefaults.gas_limit // 4})"
),
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Pre-allocation fixtures using for test filling."""
"""Pre-allocation fixtures used for test filling."""

from itertools import count
from pathlib import Path
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def pytest_addoption(parser: pytest.Parser) -> None:
default=None,
dest="engine_endpoint",
help="Engine endpoint to an execution client, which implies that the execute command "
"will be used to drive the chain. If not provided, it's assumed that the execution client"
"is connected to a beacon node and the chain progresses automatically. If provided, the"
"will be used to drive the chain. If not provided, it's assumed that the execution client "
"is connected to a beacon node and the chain progresses automatically. If provided, the "
"JWT secret must be provided as well.",
)
engine_rpc_group.addoption(
Expand All @@ -73,7 +73,7 @@ def pytest_addoption(parser: pytest.Parser) -> None:
action="store",
default=None,
dest="engine_jwt_secret_file",
help="Path to a file containing the JWT secret to be used to authenticate with the engine"
help="Path to a file containing the JWT secret to be used to authenticate with the engine "
"endpoint. The file must contain only the JWT secret as a hex string.",
)

Expand Down
2 changes: 1 addition & 1 deletion repo_subpaths_for_grammar_check.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Status legend: `[ ]` pending, `[~]` in progress, `[x]` complete

- [x] `packages/testing/src/execution_testing/cli/pytest_commands/plugins/consume/**/*.py` (~32 files)
- [x] `packages/testing/src/execution_testing/cli/pytest_commands/plugins/filler/**/*.py` (~27 files)
- [ ] `packages/testing/src/execution_testing/cli/pytest_commands/plugins/execute/**/*.py` (~21 files)
- [x] `packages/testing/src/execution_testing/cli/pytest_commands/plugins/execute/**/*.py` (~21 files)
- [ ] `packages/testing/src/execution_testing/cli/pytest_commands/plugins/forks/**/*.py`, `shared/**/*.py`, `help/**/*.py` (~16 files)
- [ ] `packages/testing/src/execution_testing/cli/pytest_commands/plugins/*.py` (root plugins, ~6 files)

Expand Down
Loading