summaryrefslogtreecommitdiff
path: root/tests/modules/process_test
Commit message (Collapse)AuthorAgeFilesLines
* mypy: all of coverage/ and tests/ are checkedNed Batchelder2023-01-121-5/+9
|
* style: convert more string formatting to f-stringsNed Batchelder2021-11-111-1/+1
|
* Implement __spec__ for files we run. #745 #838Ned Batchelder2019-11-241-2/+13
|
* Update NOTICE link to GitHub.Ned Batchelder2018-06-241-1/+1
|
* A different way to group builtins, because it's fun, why not?Ned Batchelder2018-03-311-3/+8
|
* Make the list of builtins more compact, since they are never the problem in ↵Ned Batchelder2017-03-051-2/+13
| | | | these tests
* Move the jython conditional for try_execfile.pyNed Batchelder2017-01-191-7/+2
|
* More Jython test fixes/skipsNed Batchelder2017-01-141-1/+7
|
* Setuptools fixed their egg-ordering problem, no need for this test ↵Ned Batchelder2016-07-291-5/+0
| | | | workaround any more.
* Compensate for setuptools 25.0.0 seemingly doing sys.path differentlyNed Batchelder2016-07-241-0/+5
|
* Move try_execfile.py to an unambiguous placeNed Batchelder2016-06-122-0/+84
Where it was, we were counting on "tests" referring to coverage.py's own tests directory, but a -e install of a helper like unittest-mixins could provide a tests directory, which prevented the imports we needed for the tests. Moving try_execfile.py to a new subdirectory with a less-common name solves the problem. --HG-- rename : tests/try_execfile.py => tests/modules/process_test/try_execfile.py