reduce pytest parameter combinatons

This commit is contained in:
Matthias Bisping 2023-02-13 14:08:17 +01:00
parent a1e6c9e553
commit e5832a1735

View File

@ -28,8 +28,8 @@ logger.add(sys.stderr, level="INFO")
@pytest.fixture(
params=[
"rough_grain",
"plain",
# "rough_grain",
# "plain",
# "digital",
"crumpled",
]
@ -42,8 +42,8 @@ def base_texture(request, size):
@pytest.fixture(
params=[
"portrait",
# "landscape",
# "portrait",
"landscape",
]
)
def orientation(request):
@ -63,11 +63,11 @@ def dpi(request):
@pytest.fixture(
params=[
# "brown",
# "sepia",
"sepia",
# "gray",
"white",
"light_red",
"light_blue",
# "white",
# "light_red",
# "light_blue",
]
)
def color_name(request):
@ -77,7 +77,7 @@ def color_name(request):
@pytest.fixture(
params=[
# "smooth",
"coarse",
# "coarse",
"neutral",
]
)