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
Expand Up @@ -186,7 +186,7 @@ def download_release_information(

GitHub's API returns releases in pages of 30 by default. This function
follows the pagination links to ensure we get every release, which is
crucial for finding older version or latest releases.
crucial for finding older versions or latest releases.
"""
all_releases = []
for repo in SUPPORTED_REPOS:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def check_live_port(test_suite_name: str) -> Literal[8545, 8551]:

class FixturesDict(Dict[Path, Fixtures]):
"""
A dictionary caches loaded fixture files to avoid reloading the same file
multiple times.
A dictionary that caches loaded fixture files to avoid reloading the same
file multiple times.
"""

def __init__(self) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, *args: object) -> None:

class GenesisBlockMismatchExceptionError(Exception):
"""
Definers a mismatch exception between the client and fixture genesis
Defines a mismatch exception between the client and fixture genesis
blockhash.
"""

Expand Down Expand Up @@ -68,7 +68,7 @@ def __init__(
)
elif unexpected_fields:
message += (
"\n\nUn-expected genesis block header fields from client:\n"
"\n\nUnexpected genesis block header fields from client:\n"
f"{pprint.pformat(unexpected_fields, indent=4)}"
"\nIs the fork configuration correct?"
)
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 @@ -6,7 +6,7 @@ Status legend: `[ ]` pending, `[~]` in progress, `[x]` complete

## packages/testing - CLI Plugins

- [ ] `packages/testing/src/execution_testing/cli/pytest_commands/plugins/consume/**/*.py` (~32 files)
- [x] `packages/testing/src/execution_testing/cli/pytest_commands/plugins/consume/**/*.py` (~32 files)
- [ ] `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)
- [ ] `packages/testing/src/execution_testing/cli/pytest_commands/plugins/forks/**/*.py`, `shared/**/*.py`, `help/**/*.py` (~16 files)
Expand Down
Loading