You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
399 B
15 lines
399 B
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from .fixtures.load import canned_data_input, canned_data_output
|
|
|
|
|
|
def pytest_generate_tests(metafunc):
|
|
if "property_filepath" in metafunc.fixturenames:
|
|
metafunc.parametrize(
|
|
"property_filepath",
|
|
Path((metafunc.config.rootdir / "/test_data/mock_backup_data")).glob(
|
|
"*.properties"
|
|
),
|
|
)
|