summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/test_locks.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.9] bpo-45229: Remove test_main in many tests (GH-28405) (GH-28456)Serhiy Storchaka2021-09-201-9/+5
| | | | | | | | | | | Instead of explicitly enumerate test classes for run_unittest() use the unittest ability to discover tests. This also makes these tests discoverable and runnable with unittest. load_tests() can be used for dynamic generating tests and adding doctests. setUpModule(), tearDownModule() and addModuleCleanup() can be used for running code before and after all module tests.. (cherry picked from commit 40348acc180580371d25f75f46b27048e35f2435)
* bpo-35202: Remove unused imports in tests. (GH-10561)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-161-1/+0
|
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-122/+100
| | | | | | * Remove Setup.config * Always define WITH_THREAD for compatibility.
* Issue #26940: Fix test_importlib that hangs on the Android armv7 qemu emulator.Xavier de Gaye2016-12-081-1/+1
|
* Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-1/+0
|
* Issue #21755: Skip {Frozen,Source}_DeadlockAvoidanceTests tests whenBerker Peksag2014-07-031-66/+78
| | | | Python is built without threads.
* Issue 21137: Better repr for threading.Lock()Raymond Hettinger2014-05-261-0/+3
|
* Issue #21503: Use test_both() consistently in test_importlib.Eric Snow2014-05-161-21/+26
|
* Fix test to not consider mixin a standalone testBrett Cannon2013-10-181-1/+1
|
* Issue #16803: Have test_importlib.test_locks use frozen and sourceBrett Cannon2013-10-181-21/+48
| | | | code.
* Issue #15794: Relax a test case due to the deadlock detection's ↵Antoine Pitrou2012-08-281-4/+18
| | | | conservativeness.
* Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-201-0/+115
This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution.