ci: Include macOS and Windows in CI pipeline - #22
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR extends the CI pipeline to run tests on Windows and macOS in addition to Ubuntu, and simplifies the pytest invocation.
- Added
windows-latestandmacos-latestto theosmatrix - Removed explicit
PYTHONPATHsetting in the pytest command
Comments suppressed due to low confidence (1)
.github/workflows/python-tests.yml:56
- Verify that this command is indented exactly two spaces under the
run: |block (matching the YAML structure used for other steps) to ensure the CI workflow remains valid.
poetry run pytest tests -vv
Ki-Seki
force-pushed
the
mac-win-adapt
branch
6 times, most recently
from
July 8, 2025 14:32
e436664 to
caefa04
Compare
tianxing02
pushed a commit
to tianxing02/MemOS
that referenced
this pull request
Feb 24, 2026
* ci: include mac and win * fix: use pathlib for cross-platform path handling in cube creation test * fix: improve file path handling in test_dump using os.path.join * fix: use a small hf model instead * fix: add LLMFactory mock to test MOS initialization with invalid user * fix: remove warning about platform support * fix:db close in windows for sqlitedb * fix: fix ci * fix: delete db after close and get permission * ci: explicitly checks macos-14 and macos-15 * docs: add warning about macOS compatibility --------- Co-authored-by: fridayL <lcy081099@gmail.com>
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.
Expand the CI pipeline to include macOS and Windows environments for testing alongside Ubuntu.
Fix #21 #26