From 6630f8c85ac858319639dc941da8334f96b02621 Mon Sep 17 00:00:00 2001 From: Paul Nechifor Date: Sun, 8 Feb 2026 02:17:31 +0200 Subject: [PATCH] remove tofix --- dimos/agents_deprecated/memory/test_image_embedding.py | 3 --- pyproject.toml | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/dimos/agents_deprecated/memory/test_image_embedding.py b/dimos/agents_deprecated/memory/test_image_embedding.py index 3f2efbcc1a..89f0716e7e 100644 --- a/dimos/agents_deprecated/memory/test_image_embedding.py +++ b/dimos/agents_deprecated/memory/test_image_embedding.py @@ -31,7 +31,6 @@ class TestImageEmbedding: """Test class for CLIP image embedding functionality.""" - @pytest.mark.tofix def test_clip_embedding_initialization(self) -> None: """Test CLIP embedding provider initializes correctly.""" try: @@ -44,7 +43,6 @@ def test_clip_embedding_initialization(self) -> None: except Exception as e: pytest.skip(f"Skipping test due to model initialization error: {e}") - @pytest.mark.tofix def test_clip_embedding_process_video(self) -> None: """Test CLIP embedding provider can process video frames and return embeddings.""" try: @@ -149,7 +147,6 @@ def on_completed() -> None: except Exception as e: pytest.fail(f"Test failed with error: {e}") - @pytest.mark.tofix def test_clip_embedding_similarity(self) -> None: """Test CLIP embedding similarity search and text-to-image queries.""" try: diff --git a/pyproject.toml b/pyproject.toml index d88e9ff0bf..194177acd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -389,7 +389,6 @@ markers = [ "lcm: tests that run actual LCM bus (can't execute in CI)", "module: tests that need to run directly as modules", "gpu: tests that require GPU", - "tofix: temporarily disabled test", "e2e: end to end tests", "integration: slower integration tests", "neverending: they don't finish", @@ -399,7 +398,7 @@ env = [ "GOOGLE_MAPS_API_KEY=AIzafake_google_key", "PYTHONWARNINGS=ignore:cupyx.jit.rawkernel is experimental:FutureWarning", ] -addopts = "-v -p no:warnings -ra --color=yes -m 'not (vis or exclude or tool or lcm or ros or heavy or gpu or module or tofix or e2e or integration or neverending or mujoco)'" +addopts = "-v -p no:warnings -ra --color=yes -m 'not (vis or exclude or tool or lcm or ros or heavy or gpu or module or e2e or integration or neverending or mujoco)'" asyncio_mode = "auto" asyncio_default_fixture_loop_scope = "function"