diff --git a/src/pytest_plugins/consume/hive_simulators/conftest.py b/src/pytest_plugins/consume/hive_simulators/conftest.py index 73b3b55f19..22b3dca09c 100644 --- a/src/pytest_plugins/consume/hive_simulators/conftest.py +++ b/src/pytest_plugins/consume/hive_simulators/conftest.py @@ -63,6 +63,7 @@ def hive_consume_command( @pytest.fixture(scope="function") def eest_consume_commands( + request: pytest.FixtureRequest, test_suite_name: str, client_type: ClientType, test_case: TestCaseIndexFile | TestCaseStream, @@ -71,8 +72,9 @@ def eest_consume_commands( Commands to run the test within EEST using a hive dev back-end. """ hive_dev = f"./hive --dev --client-file configs/prague.yaml --client {client_type.name}" + input_source = request.config.getoption("fixture_source") consume = ( - f'consume {test_suite_name.split("-")[-1]} -v --input latest-develop-release -k ' + f'consume {test_suite_name.split("-")[-1]} -v --input={input_source} -k ' f'"{test_case.id}"' ) return [hive_dev, consume] diff --git a/src/pytest_plugins/consume/hive_simulators/engine/conftest.py b/src/pytest_plugins/consume/hive_simulators/engine/conftest.py index 164ae97d52..2f2f6e813a 100644 --- a/src/pytest_plugins/consume/hive_simulators/engine/conftest.py +++ b/src/pytest_plugins/consume/hive_simulators/engine/conftest.py @@ -33,7 +33,7 @@ def test_suite_name() -> str: """ The name of the hive test suite used in this simulator. """ - return "eest-engine" + return "eest/consume-engine" @pytest.fixture(scope="module") @@ -41,7 +41,7 @@ def test_suite_description() -> str: """ The description of the hive test suite used in this simulator. """ - return "Execute blockchain tests by against clients using the Engine API." + return "Execute blockchain tests against clients using the Engine API." @pytest.fixture(scope="function") diff --git a/src/pytest_plugins/consume/hive_simulators/rlp/conftest.py b/src/pytest_plugins/consume/hive_simulators/rlp/conftest.py index d908346aa0..00c8a2a24f 100644 --- a/src/pytest_plugins/consume/hive_simulators/rlp/conftest.py +++ b/src/pytest_plugins/consume/hive_simulators/rlp/conftest.py @@ -22,7 +22,7 @@ def test_suite_name() -> str: """ The name of the hive test suite used in this simulator. """ - return "eest-block-rlp" + return "eest/consume-rlp" @pytest.fixture(scope="module") diff --git a/src/pytest_plugins/execute/rpc/hive.py b/src/pytest_plugins/execute/rpc/hive.py index 38995fc2ac..45251d6d03 100644 --- a/src/pytest_plugins/execute/rpc/hive.py +++ b/src/pytest_plugins/execute/rpc/hive.py @@ -332,7 +332,7 @@ def test_suite_name() -> str: """ The name of the hive test suite used in this simulator. """ - return "EEST Execute Test, Hive Mode" + return "eest/execute, hive mode" @pytest.fixture(scope="session")