We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81abfd0 commit 51587cbCopy full SHA for 51587cb
1 file changed
.github/scripts/run-tests.sh
@@ -11,11 +11,14 @@ echo "::endgroup::"
11
12
echo "::group::python-control unit tests"
13
pushd ${python_control_srcdir:=./python-control}
14
-# test_root_locus_zoom, test_sisotool: problems with the toolbar for MPL backends, not relevant to Slycot
+# problems with the toolbar for MPL backends, not relevant to Slycot
15
+donttest="test_root_locus_zoom or test_sisotool"
16
+# don't care about deprecation warnings here
17
+donttest="$donttest or test_default_deprecation"
18
pytest control/tests \
19
--cov=$slycot_libdir \
20
--cov-config=${slycot_srcdir}/.coveragerc \
- -k "not (test_root_locus_zoom or test_sisotool)"
21
+ -k "not ($donttest)"
22
mv .coverage ${slycot_srcdir}/.coverage.control
23
popd
24
echo "::endgroup::"
0 commit comments