3333
3434def 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" ])
5353def 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)
6363def test_serialize_workspace (example , filename , monkeypatch ):
6464 """Expect that ."""
0 commit comments