django1/django/test
Florian Apolloner 73a610d2a8 Final attempt to solve sporadic test failures.
tearDownClass is not called if setUpClass throws an exception, in our case
this means that LiveServerTestCase leaks LiveServerThread sockets if the
test happens to be skipped later on, and AdminSeleniumWebDriverTestCase
doesn't close it's already open browser window. To prevent this leakage
we catch errors where needed and manually call _tearDownClassInternal.
_tearDownClassInternal should be written as defensively as possible since
it is not allowed to make any assumptions on how far setUpClass got.

This patch should fix the sporadic "Address already in use"-errors on jenkins
and also the "This code isn't under transaction management"-error for sqlite
(also just on jenkins).

After discussion with koniiiik, jezdez, kmtracey, tos9, lifeless, nedbat and
voidspace it was decided that this is the safest approach (thanks to everyone
for their comments and help). Manually calling tearDownClass was shut down
cause we don't know how our users override our classes.

This is a private and very specialized API on purpose and should not be used
without a strong reason!

This patch partially reverts the earlier attempts to fix those issues,
namely:
	2fa0dd73b1 and
	3c5775d36f

Final note: If this patch breaks in a later version of Django, please be
very careful on how you fix it, you might not see test failures locally.
That said, this patch hopefully doesn't produce even more failures.
2013-09-17 16:41:01 +02:00
..
__init__.py Fixed #19885 -- cleaned up the django.test namespace 2013-09-09 16:03:13 -04:00
_doctest.py REmoved some unused imports 2013-09-14 12:34:57 -07:00
client.py Oops :( 2013-09-07 11:32:39 -05:00
html.py Fixed spelling errors 2013-03-28 11:16:53 -06:00
runner.py Fixed #16534 -- Improved ability to customize DiscoverRunner 2013-09-10 09:49:39 -04:00
signals.py Fixed #19031 -- Added a warning when using override_settings with 'DATABASES' 2013-07-12 07:10:18 -04:00
simple.py Deprecated django.utils.importlib 2013-07-29 17:10:22 +02:00
testcases.py Final attempt to solve sporadic test failures. 2013-09-17 16:41:01 +02:00
utils.py Fixed #19031 -- Added a warning when using override_settings with 'DATABASES' 2013-07-12 07:10:18 -04:00