summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Include default encodings in the debug outputNed Batchelder2018-12-231-0/+2
|
* Remove obsolete travis settingNed Batchelder2018-12-041-1/+0
|
* Use a full URL for the Tidelift logoNed Batchelder2018-11-301-1/+1
|
* There are no kwargs to CoverageScript any moreNed Batchelder2018-11-261-4/+2
|
* Use a function instead of a method to show helpNed Batchelder2018-11-262-75/+66
|
* Pre-release is more accurate than BetaNed Batchelder2018-11-251-6/+6
|
* Bump versionNed Batchelder2018-11-252-2/+7
|
* Pin wheel to avoid breakagecoverage-5.0a4Ned Batchelder2018-11-251-1/+2
|
* Paperwork for 5.0a4Ned Batchelder2018-11-253-10/+10
|
* Adjust the changelog entry about sys.pathNed Batchelder2018-11-251-2/+4
|
* readme_renderer is now run through twineNed Batchelder2018-11-252-2/+3
|
* Test that we have the right Python versions in the classifiersNed Batchelder2018-11-252-0/+3
|
* Control the sys.path that tests seeNed Batchelder2018-11-252-0/+41
|
* Remove incorrect commentNed Batchelder2018-11-251-1/+0
|
* Comparisons should be expected/actualNed Batchelder2018-11-251-3/+3
|
* A little more niceness for set_env.pyNed Batchelder2018-11-251-15/+25
|
* PyRunner knows how to run Python files.Ned Batchelder2018-11-2510-137/+214
| | | | Adjust sys.path to better emulate Python, but only if we should.
* Use implicit mock patching instead of explicit DI for cmdline testsNed Batchelder2018-11-252-297/+295
| | | | | This sets us up for mocking more or different globals without adding more explicit DI overrides in cmdline.py.
* A test of the #678 caseNed Batchelder2018-11-251-0/+33
|
* Don't try to use PyPy 'filenames' like '<builtin>/lib_pypy/_structseq.py'Ned Batchelder2018-11-251-2/+4
|
* Travis pulls in other libraries somehow. Exclude themNed Batchelder2018-11-181-2/+2
|
* Lint cleanupNed Batchelder2018-11-182-3/+4
|
* Rename farm to gold, since that's what it isNed Batchelder2018-11-1859-23/+23
|
* Remove test_farm.pyNed Batchelder2018-11-184-390/+154
|
* Convert farm/run_chdir.py to a test_summary.py testNed Batchelder2018-11-184-22/+14
|
* Convert farm/run/run_xxx.py to a test_summary.py testNed Batchelder2018-11-183-26/+16
|
* Convert farm/run/run_timid.py to a test_process testNed Batchelder2018-11-183-69/+59
|
* Delete the annotate farm testsNed Batchelder2018-11-1511-105/+0
|
* Remove needless noticesNed Batchelder2018-11-159-39/+0
|
* *,cover files have trailing spacesNed Batchelder2018-11-151-0/+3
|
* Convert annotate() farm tests to normal testsNed Batchelder2018-11-151-0/+121
|
* Need to get_data for .annotate() to workNed Batchelder2018-11-151-0/+1
|
* Fix function call formattingNed Batchelder2018-11-151-5/+9
|
* Simplify the way we run coverage in these testsNed Batchelder2018-11-152-60/+17
|
* No one uses size_within any more.Ned Batchelder2018-11-141-55/+24
|
* Compare the css files exactlyNed Batchelder2018-11-142-3/+13
|
* TypoNed Batchelder2018-11-131-1/+1
|
* Comparisons should always be expected,actualNed Batchelder2018-11-131-32/+30
|
* Update the tox output example from hg to git.Mariatta2018-11-131-2/+2
|
* Update url from bitbucket to GitHub where applicable.Mariatta2018-11-132-2/+2
|
* Keep test directories shorterNed Batchelder2018-11-122-2/+6
|
* Oops, had tidelift twiceNed Batchelder2018-11-121-3/+0
|
* Update requirementsNed Batchelder2018-11-126-11/+11
|
* Correct a linkNed Batchelder2018-11-121-1/+1
|
* Python 3.8 passes all testsNed Batchelder2018-11-111-0/+2
|
* A simple test of a test functionNed Batchelder2018-11-111-0/+17
|
* One last decorator test change for 3.8Ned Batchelder2018-11-111-2/+10
|
* Update an HTML gold test due to new peephole optimizationsNed Batchelder2018-11-113-47/+37
|
* Comparison should always be expected,actualNed Batchelder2018-11-111-6/+6
|
* Canonicalize the XML outputNed Batchelder2018-11-111-5/+24
| | | | | | | | | | https://bugs.python.org/issue34160 added retaining the user's attribute order to the XML output, which removed the sorting that used to happen. This broke our XML tests, which compare against saved gold files. This adds in a rough-and-ready canonicalization to avoid the problem. Maybe the core devs will eventually support a sort_attributes option, and I can get rid of this.