I'm running parallel unittesting using Django 's manage.py test
command.
The issue is that this command only recognized the unittest-way
test method - for those that has the pytest-way eg no test class and have fixture param, manage.py test
will skip them.
So my question is how to get manage.py test
collect the pytest-way test methods?
p.s.
The reason I go for Django unittest manage.py test
is because of its --parallel
feature ie it can handle beautifully test database creation for each parallel thread the test running in.