Seperate out Testing Suite into Unit and Regression Testing - #59
Open
harryswift01 wants to merge 5 commits into
Open
harryswift01 wants to merge 5 commits into
harryswift01 wants to merge 5 commits into
Conversation
…ut-unit-and-regression-test-suites
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
This PR updates SIST's test suite and CI, splitting tests into fast unit tests and regression tests, adding a set of scheduled CI workflows, and reporting combined Python + C++ coverage through Coveralls.
Changes
Split the test suite into
tests/unitandtests/regression:test_energetics.py/test_ir_finder.py(pure Python, no build needed) intotests/unittest_cli.py/test_regression.py/test_legacy_entrypoints.py(need the compiledqsiddbinaries and the real CLI) intotests/regression, along withtests/data/tests/referenceconftest.pyaccordingly,tests/unitneeds no fixtures at all, sotests/regression/conftest.pynow holds everything that builds/runs the CLItests/unitnow runs standalone in under a second, with zero build or subprocess activityAdd CodeEntropy's scheduled CI workflows and mirror its README badges:
daily.yaml(unit tests across Python 3.12/3.13/3.14),weekly-docs.yaml(docs build),update-copyright-years-in-license-file.yaml, and renamed the existing conda-build regression job toweekly-regression.yamlREADME.mdbadges to matchImpact