Closed typeshige closed 11 years ago
discover-runner doesn't really work properly with multiple test labels; see the hack at https://github.com/jezdez/django-discover-runner/blob/master/discover_runner/runner.py#L44
The updated version of discover-runner that was recently merged into Django core for 1.6 does handle this correctly, so the right fix here is probably to backport that code to django-discover-runner for users of pre-1.6 Django versions.
I just released django-discover-runner which backports the test runner from Django 1.6. Please try again and don't hesitate to let me know if it doesn't work.
I have 10+ apps that I want to test and I'm trying to get it to work with django-discover-runner.
If I run one, it looks fine:
Tests are in file 'test_models.py' in content/tests/
If I run another one, it also looks fine:
Ok, failed test, but it still found and ran them.
Test file test_models.py in groups/tests/
Let's try running both:
Am I doing something wrong? The above should be valid, right?
Here is my Test configuration:
Is there anything I'm doing wrong?
Thanks!