File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ def hive_consume_command(
6363
6464@pytest .fixture (scope = "function" )
6565def eest_consume_commands (
66+ request : pytest .FixtureRequest ,
6667 test_suite_name : str ,
6768 client_type : ClientType ,
6869 test_case : TestCaseIndexFile | TestCaseStream ,
@@ -71,8 +72,9 @@ def eest_consume_commands(
7172 Commands to run the test within EEST using a hive dev back-end.
7273 """
7374 hive_dev = f"./hive --dev --client-file configs/prague.yaml --client { client_type .name } "
75+ input_source = request .config .getoption ("fixture_source" )
7476 consume = (
75- f'consume { test_suite_name .split ("-" )[- 1 ]} -v --input latest-develop-release -k '
77+ f'consume { test_suite_name .split ("-" )[- 1 ]} -v --input= { input_source } -k '
7678 f'"{ test_case .id } "'
7779 )
7880 return [hive_dev , consume ]
Original file line number Diff line number Diff line change @@ -33,15 +33,15 @@ def test_suite_name() -> str:
3333 """
3434 The name of the hive test suite used in this simulator.
3535 """
36- return "eest-engine"
36+ return "eest/consume -engine"
3737
3838
3939@pytest .fixture (scope = "module" )
4040def test_suite_description () -> str :
4141 """
4242 The description of the hive test suite used in this simulator.
4343 """
44- return "Execute blockchain tests by against clients using the Engine API."
44+ return "Execute blockchain tests against clients using the Engine API."
4545
4646
4747@pytest .fixture (scope = "function" )
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def test_suite_name() -> str:
2222 """
2323 The name of the hive test suite used in this simulator.
2424 """
25- return "eest-block -rlp"
25+ return "eest/consume -rlp"
2626
2727
2828@pytest .fixture (scope = "module" )
Original file line number Diff line number Diff line change @@ -332,7 +332,7 @@ def test_suite_name() -> str:
332332 """
333333 The name of the hive test suite used in this simulator.
334334 """
335- return "EEST Execute Test, Hive Mode "
335+ return "eest/execute, hive mode "
336336
337337
338338@pytest .fixture (scope = "session" )
You can’t perform that action at this time.
0 commit comments