Skip to content

Commit db43e25

Browse files
committed
fix: adjust file paths
1 parent b34eb32 commit db43e25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_integration/test_workspace_io.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
def pytest_generate_tests(metafunc) -> None:
3535
if "invalid_workspace" in metafunc.fixturenames:
36-
files = sorted(Path("data", "workspace_validation").glob("*.json.gz"))
36+
files = sorted(Path("data", "workspace_validation").glob("*.json"))
3737
ids = [p.name for p in files]
3838
metafunc.parametrize(
3939
"invalid_workspace",
@@ -49,7 +49,7 @@ def test_invalid_workspace(invalid_workspace):
4949
WorkspaceIO.parse_file(invalid_workspace)
5050

5151

52-
@pytest.mark.parametrize("filename", ["Trivial.json.gz", "GettingStarted.json.gz"])
52+
@pytest.mark.parametrize("filename", ["Trivial.json", "GettingStarted.json"])
5353
def test_deserialize_workspace(filename):
5454
"""Expect that a trivial workspace definition is successfully deserialized."""
5555
path = DEFINITIONS / filename
@@ -58,7 +58,7 @@ def test_deserialize_workspace(filename):
5858

5959
@pytest.mark.xfail(reason="Workspace and model comparison is still id dependent.")
6060
@pytest.mark.parametrize(
61-
"example, filename", [("getting_started", "GettingStarted.json.gz")]
61+
"example, filename", [("getting_started", "GettingStarted.json")]
6262
)
6363
def test_serialize_workspace(example, filename, monkeypatch):
6464
"""Expect that ."""

0 commit comments

Comments
 (0)