Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: piotro888 <[email protected]>
  • Loading branch information
lekcyjna123 and piotro888 authored Mar 6, 2024
1 parent 1b97828 commit c89f3fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ def pytest_addoption(parser: pytest.Parser):
"--coreblocks-test-name",
action="store",
type=str,
help="Name or regexp in flatten format pointing to test to run.",
help="Name or regexp in flatten format matching the tests to run.",
)
group.addoption(
"--coreblocks-test-count",
action="store",
type=int,
help="Number of tests to starts. If less than number of all selected tests, then starts only subset of them.",
help="Number of tests to start. If less than number of all selected tests, then starts only subset of them.",
)


Expand Down
2 changes: 1 addition & 1 deletion test/regression/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def pytest_generate_tests(metafunc: pytest.Metafunc):

all_tests = (
load_regression_tests()
) # The list has to be always in the samo order (e.g. sorted) to allow for parallel testing
) # The list has to be always in the same order (e.g. sorted) to allow for parallel testing
traces = metafunc.config.getoption("coreblocks_traces")
backend = metafunc.config.getoption("coreblocks_backend")
verbose = bool(metafunc.config.getoption("verbose"))
Expand Down

0 comments on commit c89f3fa

Please sign in to comment.