-
Notifications
You must be signed in to change notification settings - Fork 438
Refactor the test suite using pytest for array and matrix types #438
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
Merged
murrayrm
merged 30 commits into
python-control:master
from
bnavigator:array-matrix-tests
Dec 30, 2020
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
5e16344
reorganize travis matrix, extend conftest.py
bnavigator c220a98
pytestify bdalg_test
bnavigator 90a0059
pytestify canonical_test
bnavigator 79b5bfe
pytestify config_test
bnavigator 74d563c
pytestify convert_test.py
bnavigator c7cc828
pytestify ctrlutil_test
bnavigator d899140
pytestify delay_test.py
bnavigator 53520e9
pytestify discrete_test
bnavigator 659aa2d
pytestify flatsys_test
bnavigator 1da4c5c
pytestify frd_test
bnavigator 96f0911
pytestify freqresp_test.py
bnavigator caed712
pytestify input_element_int_test
bnavigator 55a6119
pytestify iosys_test
bnavigator 521e927
pytestify lti_test.py
bnavigator 2c31029
pytestify mateqn_test
bnavigator fc2f770
pytestify matlab tests
bnavigator 5880473
pytestify minreal_test
bnavigator 97eedaf
pytestify modelsimp
bnavigator 3eb0a92
pytestify nichols_test
bnavigator 000998f
pytestify phaseplot_test
bnavigator 3177796
pytestify rlocus_test.py
bnavigator f745bd2
pytestify robust tests
bnavigator 2ee0773
pytestify sisotool_test.py
bnavigator e660363
pytestify slycot_convert_test.py
bnavigator 952c511
pytestify statefbk tests
bnavigator 6386832
pytestify statesp tests
bnavigator 1dd2525
pytestify timeresp_test.py
bnavigator 29883e8
pytestify xferfcn_input_test.py
bnavigator ca9476f
pytestify xferfcn tests
bnavigator 2b98769
make tests work with pre #431 source code state
bnavigator File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Oops, something went wrong.
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.
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.
To minimize CI resource usage, would it make sense to just check against the earliest supported Python 3 release and the latest stable Python 3 release? So 3.6 and 3.9, with the idea that if it works in those two then 3.7, and 3.8 are probably OK as well.
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.
Definitely. AFAIK we do not make use of any of the changed Python stdlib changes like importlib-metadata, -resources, -dataclasses or the like.
We will need to revisit the test strategy matrix when moving from travis-ci.org to travis-ci.com or Github Actions. (#446)