summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* 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.
* Refactor the XML comparisonNed Batchelder2018-11-111-23/+16
|
* Comparison is not symmetric, it's expected vs actualNed Batchelder2018-11-115-42/+44
|
* Always compare expected then actualNed Batchelder2018-11-111-17/+17
|
* Keep test tempdirs distinct, for saving and comparing test outputNed Batchelder2018-11-112-8/+13
|
* Python 3.8 will optimize away "while True:"Ned Batchelder2018-11-114-10/+52
|
* Better error handling in set_env.pyNed Batchelder2018-11-091-6/+22
|
* Minor cleanup in tox.iniNed Batchelder2018-11-051-3/+5
|
* Debug-time environment variables can be set with set_env.pyNed Batchelder2018-11-037-1/+103
|
* Record that a bug was fixed. #700Ned Batchelder2018-11-031-1/+4
|
* Everything should get a docstringNed Batchelder2018-11-032-0/+2
|
* Adapt to 3.8's way of tracing decorated functionsNed Batchelder2018-11-034-14/+56
|
* You can turn off contracts while debugging testsNed Batchelder2018-11-031-1/+5
|
* Make this useful for py3 alsoNed Batchelder2018-11-031-1/+2
|
* More correctNed Batchelder2018-11-011-1/+1
|
* Better version showingNed Batchelder2018-10-311-2/+1
|
* Remove use_2to3=False; it is the defaultJon Dufresne2018-10-271-7/+0
| | | | Slightly simplifies setup.py.