Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/test_runner/test_discover_runner.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #25110 -- Fixed a test_runner test isolation ↵Joseph Gordon2015-07-271-3/+5
| | | | | | regression. Thanks claudep for the patch.
* Moved contrib.gis tests out of contrib.Tim Graham2015-02-111-2/+2
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
|
* Fixed #23742 -- Added an option to reverse tests order.wrwrwr2014-11-251-0/+29
| | | | | | | | | This is useful for debugging side effects affecting tests that are usually executed before a given test. Full suite and pair tests sort cases more or less deterministically, thus some test cross-dependencies are easier to reveal by reversing the order. Thanks Preston Timmons for the review.
* Fixed #23707 -- Prevented discovery of duplicated testsClaude Paroz2014-10-231-0/+9
|
* cater for running tests from another directory than ↵Nikolaus Schlemm2014-05-161-11/+12
| | | | tests - applying existing pattern to newly added test_testcase_ordering as well
* Fixed flake8 warnings introduced in recent commits.Simon Charette2014-04-161-1/+0
|
* Fixed #22102 -- Made SimpleTestCase tests run before ↵Claude Paroz2014-04-121-2/+16
| | | | | | unittest.TestCase ones Thanks aptiko for the reporti and Tim Graham for the review.
* Removed unused function in test_runner testsPreston Timmons2014-01-011-8/+1
| | | | | This was used for python 2.6 and unittest2 compatibility. It was forgotten when the code that used it was removed.
* Fixed #21206 -- Fixed test discovery without labelsPreston Timmons2014-01-011-11/+25
| | | | | Added test to verify an empty label performs discovery on the current working directory.
* Fixed #21206 -- No longer run discovery if the test ↵Preston Timmons2013-12-261-0/+28
| | | | | | label doesn't point to a package or directory. Thanks thepapermen for the report and Carl Meyer for the review.
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-1/+0
|
* Fixed #16534 -- Improved ability to customize DiscoverRunnerTim Graham2013-09-101-1/+10
| | | | | | Added DiscoverRunner.test_suite and .test_runner attributes. Thanks tomchristie for the suggestion and jcd for the patch.
* Removed tests for django.utils.unittest vs. unittest.Aymeric Augustin2013-07-011-31/+2
| | | | | | | | Silenced warnings caused by the deprecation of django.utils.unittest. Thanks Preston Timmons and Carl Meyer for their advice. Fixed #20680.
* Stopped using django.utils.unittest in the test suite.Aymeric Augustin2013-07-011-1/+1
| | | | Refs #20680.
* Fixed #20437 - marked a test-runner test as ↵Carl Meyer2013-05-201-0/+17
| | | | expected-fail under certain conditions.
* Fixed #20449 - Corrected test sensitivity to current ↵Tomasz Jaskowski2013-05-201-3/+17
| | | | working dir.
* Fixed #17365, #17366, #18727 -- Switched to discovery ↵Carl Meyer2013-05-111-0/+68
test runner. Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670.