mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-11-27 00:09:43 +00:00
13 lines
303 B
Python
13 lines
303 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(scope="class")
|
|
def setup_configuration(request, get_markers):
|
|
param = dict(request.param)
|
|
available_keys = []
|
|
for key in get_markers:
|
|
if get_markers[key] == True:
|
|
available_keys.append(key)
|
|
print(available_keys)
|
|
yield "return_var"
|