tests: refactored the way tileset test directories are handled. Switching from finding all directories to manually listing.

This commit is contained in:
Darren Eberly
2020-06-04 21:46:13 -04:00
parent 7c4071c0f2
commit 2ed04ae204

View File

@@ -13,7 +13,12 @@ TEST_DATA = TESTS_DIR / "test_data"
TILE_SETS = TEST_DATA / "tilesets"
ALL_TILESET_DIRS = TILE_SETS.glob("*")
ALL_TILESET_DIRS = [
TILE_SETS / "image",
TILE_SETS / "image_background_color",
TILE_SETS / "image_properties",
TILE_SETS / "image_transparent_color",
]
@pytest.mark.parametrize("tileset_dir", ALL_TILESET_DIRS)