Closed
Description
Our type-checking unit tests all run under pytest, and some others run under myunit.
For doing development, one generally pretty quickly wants to start running individual tests, or passing flags like py.test --verbose
, -s
, or -x/--exitfirst
. That means running py.test
directly, or running myunit
directly for those tests that are under myunit. (There is a way to wrap them to send through runtests.py
, but that's more complicated.)
Currently the mention in test-data/unit/README.md
of running pytest directly is short and easy to gloss over. We should make it more of a focus.