django-test-extensions
django-test-extensions copied to clipboard
A set of custom assertions and examples for use testing django applications
Does it not run with Django 1.4.10 and Python 2.6? /env/lib/python2.7/site-packages/test_extensions/testrunners/codecoverage.py", line 6, in from django.test.simple import run_tests as django_test_runner ImportError: cannot import name run_tests
I've installed the app and when I tried `python manage.py test --coverage` I got the following error: ``` ImportError: cannot import name run_tests ``` It seems the cause of the...
The command fail with message: ValueError: signal only works in main thread.
This runs correctly without --xml ``` Traceback (most recent call last): File "./manage.py", line 11, in execute_manager(settings) File "/usr/lib/pymodules/python2.6/django/core/management/__init__.py", line 438, in execute_manager utility.execute() File "/usr/lib/pymodules/python2.6/django/core/management/__init__.py", line 379, in execute...
Hudson log reports Ran 182 tests in 39.448s Hudson test result page shows (root) 2.3 sec 1 0 182 xml file shows testsuite errors="0" failures="1" name="" tests="182" time="39.448"> but individual...
Stacktraces generated during tests when using the xmloutput runner do not appear to include line endings, which makes them difficult to read.
If you happen to run tests with the --nodb option on an app that does in fact use the ORM to do CRUD operations on your database, it WILL corrupt...
I like to exclude the django.contrib stuff from my coverage testing. If you put the 'django.contrib.*' stuff into this settings variable, they still get coverage tested. If you just use...
This is due to the support for quitting tests using a signal handler: signal handlers cannot be installed into threads other than the main thread.
When you have 'django.contrib.admin' in the SKIP_TESTS setting, it still runs tests on this app. You need to just have 'admin'. The method of identifying which apps to skip should...