From c89f3fa901c4015a34bac161399eef60338889a6 Mon Sep 17 00:00:00 2001 From: lekcyjna123 <34948061+lekcyjna123@users.noreply.github.com> Date: Wed, 6 Mar 2024 10:14:28 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: piotro888 --- test/conftest.py | 4 ++-- test/regression/conftest.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/conftest.py b/test/conftest.py index 35f09bfd3..1095fba03 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -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.", ) diff --git a/test/regression/conftest.py b/test/regression/conftest.py index ca2dc41e0..54648bbb5 100644 --- a/test/regression/conftest.py +++ b/test/regression/conftest.py @@ -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"))