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 e6b542a65e..b4f3f5f756 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -387,7 +387,6 @@ markers = [ "module: tests that need to run directly as modules", "gpu: tests that require GPU", "cuda: tests which require CUDA (specifically CUDA not just GPU acceleration)", - "tofix: temporarily disabled test", "e2e: end to end tests", "integration: slower integration tests", "neverending: they don't finish", @@ -397,7 +396,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"