From c5f43ca5d80320a89d84fe645ec9115c0f401b5d Mon Sep 17 00:00:00 2001 From: Ardt Klapwijk <59741981+ArdtK@users.noreply.github.com> Date: Fri, 19 Jul 2024 16:14:15 +0200 Subject: [PATCH] chore: remove skip on test --- tests/models/test_base_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/models/test_base_model.py b/tests/models/test_base_model.py index 2d231ba4..e0a2377e 100644 --- a/tests/models/test_base_model.py +++ b/tests/models/test_base_model.py @@ -120,7 +120,6 @@ def test_basemodellist_execute(self, model, filename, modelname): (DFoundationsModel, "bm1-1a.foi", "dfoundations/benchmarks"), ], ) - @pytest.mark.skip(reason="Failing after pydantic 2 update. Cause of failure should be investigated in more detail.") def test_basemodellist_execute_remote(self, _, __, model, filename, modelname): # Setup models a = model() @@ -170,6 +169,7 @@ def test_basemodel_execute_remote(self, _, __, model, filename, modelname): model = modelinstance.execute_remote("/") # no url is needed with the TestClient assert model.output + class TestBool: @pytest.mark.unittest def test_init(self):