-
Notifications
You must be signed in to change notification settings - Fork 10
Remove tofix and add skip_macos
#1216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
Greptile OverviewGreptile SummaryThis PR removes the Confidence Score: 3/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Pytest as pytest
participant Conftest as dimos/conftest.py
participant Collector as collection phase
participant Test as test_image_embedding.py
Pytest->>Conftest: load conftest plugins
Pytest->>Collector: collect tests/items
Collector-->>Test: discovers TestImageEmbedding items
Collector->>Conftest: pytest_collection_modifyitems(config, items)
alt platform.system() == "Darwin"
Conftest->>Collector: add skip(reason="skipped on macOS") to items with marker skip_macos
else non-macOS
Conftest-->>Collector: no modifications
end
Pytest->>Collector: apply -m expression from pyproject addopts
Collector-->>Pytest: selected items (heavy excluded by default)
Pytest->>Test: run selected tests
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3 files reviewed, 1 comment
fa72136 to
6630f8c
Compare
tofixtests actually work (locally and in CI) and are useful because they test CLIP which is used in spatial memory.