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 @@ -28,8 +28,8 @@ def apply_name_filters(input_string: str) -> str:

Note: As of 2024-10-08, with 634 doc pages, this function constitutes ~2.0s
of the total runtime (~5.5s). This seems to be insignificant with the time
taken by mkdocstrings to include the docstrings in the final output (which)
is a separate mkdocs "build-step" occurs outside the scope of this plugin.
taken by mkdocstrings to include the docstrings in the final output, which
is a separate mkdocs "build-step" that occurs outside the scope of this plugin.
"""
word_replacements = {
"acl": "ACL",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def pytest_addoption(parser: pytest.Parser) -> None:
dest="test_contract_address_increments",
default=f"{CONTRACT_ADDRESS_INCREMENTS_DEFAULT}",
type=str,
help="The address increment value to each deployed contract by a test.",
help="The address increment value for each deployed contract by a test.",
)
pre_alloc_group.addoption(
"--evm-code-type",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def yul(fork: Fork, request: pytest.FixtureRequest) -> Type[Yul]:

This fixture defines a class that wraps the ::execution_testing.tools.Yul class
so that upon instantiation within the test case, it provides the test
case's current fork parameter. The forks is then available for use in
case's current fork parameter. The fork is then available for use in
solc's arguments for the Yul code compilation.

Test cases can override the default value by specifying a fixed version
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 @@ -7,7 +7,7 @@ Status legend: `[ ]` pending, `[~]` in progress, `[x]` complete
## packages/testing - CLI Plugins

- [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)
- [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)
- [ ] `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