Some of the unit tests (e.g., matlab_test.py) generate text output or warning messages that make it difficult to tell at a glance whether the tests are passing. Ideally unit tests should generate no such output.
For the warnings, I believe you can use the warnings.catch_warnings context manager to check that a warning was given. I will plan to clean this up soon.
Some of the unit tests (e.g.,
matlab_test.py) generate text output or warning messages that make it difficult to tell at a glance whether the tests are passing. Ideally unit tests should generate no such output.For the warnings, I believe you can use the
warnings.catch_warningscontext manager to check that a warning was given. I will plan to clean this up soon.