This spits out the assertion error on stdin, as I would expect.
4. Run python manage.py test --tag=abc
This DOES NOT spit out the assertion error on stdin, as I would expect. In fact it says tests were run successfully.
This to me seems pretty dangerous. A module level error should be seen clearly, and tests should certainly not pass.
Tested on python 3.8.3, django 3.1.4.
Cammil