Test Fixtures#5
Merged
Merged
Conversation
- move meson & ninja out of runtime deps (they're both listed as build deps) - add matplotlib & python-dateutil
- smoke test for now, just attempt to install - runs ***on*** Linux, MacOS, Windows - runs ***with*** Python 3.11, 3.12, 3.14
Python 3.11 added a UTC parser `datetime.datetime.fromisoformat()` Since the datetime in examples.py's docstring is already required to be in ISO format, it should be an OK change Side effect: fewer pythons supported => fewer pythons tested
Mostly just add the temp-path stuff & some fluff around how to install. add conda + Winlibs sections: - conda is common & may be easier than MSYS2/Winlibs - Move Winsys & MSYS2 to collapsable sections, recommend using conda! - Note in installation about following sections one header before
- will run the "Examples" as part of the test suite, just to be sure nothing breaks! - These examples are a good candidate for deletion
sunipkm
approved these changes
Jun 30, 2026
Owner
|
Thanks Aaron for all your hard work! |
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.
(test): Implement test fixtures
Big changes here!! No functionality changes, but a decent amount of tidying & stuff
Summary
Create tests, run them with GitHub Actions, tidy up install
Changes
ci.ymlwith tests that run on a matrix of [Linux, MacOS, and Windows] x Python== [3.11, 3.12, 3.14]tests/*.pytoExamples/Examples/*png& render those images inREADME.mdTests should be easy to add to. I just hit some of the basic functionality.
Hope this helps! Let me know if you have questions or want to see any changes :)