mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-11-20 04:44:52 +00:00
15 lines
538 B
Python
15 lines
538 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(scope="class")
|
|
def setup_configuration(request, get_markers, get_target_object):
|
|
configuration = dict(request.param)
|
|
requested_combination = []
|
|
for key in get_markers:
|
|
if get_markers[key]:
|
|
requested_combination.append(get_markers[key])
|
|
print(requested_combination)
|
|
status = get_target_object.setup_basic_configuration(configuration=configuration,
|
|
requested_combination=requested_combination)
|
|
yield status
|