fix(ci): install pytest for python sdk omnibus test#144
Merged
nullure merged 4 commits intoCaviraOSS:mainfrom Feb 26, 2026
Merged
fix(ci): install pytest for python sdk omnibus test#144nullure merged 4 commits intoCaviraOSS:mainfrom
nullure merged 4 commits intoCaviraOSS:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This PR fixes the Python SDK CI job by ensuring pytest and its dependencies are installed before running the test suite. The pyproject.toml for the Python SDK doesn't define a [project.optional-dependencies] section with a dev extra, so the pip install -e .[dev] command was not installing pytest, causing test failures.
Changes:
- Added explicit
pip install pytestto ensure pytest is available for test execution - Changed test invocation from
pytesttopython -m pytestfor consistent Python environment usage
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
pytestin the Python SDK CI jobpython -m pytestfor consistent invocationWhy
The
Test Python SDKcheck fails in CI withpytest: command not foundbecausepackages/openmemory-pydoes not define a[dev]extra inpyproject.toml, sopip install -e .[dev]does not install pytest.Validation
22349964921(Run Omnibus Test (Deep Verify)step)..github/workflows/ci.ymlonly.