Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions dimos/agents_deprecated/memory/test_image_embedding.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"

Expand Down