summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Need to clean before building, or 27m binaries go into the 27mu wheels.Ned Batchelder2017-05-081-0/+1
|
* Coverage 4.4Ned Batchelder2017-05-070-0/+0
|
* Updated sample htmlcoverage-4.4Ned Batchelder2017-05-0711-2387/+2453
|
* prep for v4.4Ned Batchelder2017-05-075-6/+8
|
* Bitbucket redirects /issue/ to /issues/ so just change the URLsNed Batchelder2017-05-072-144/+144
|
* Use a terser reference to issuesNed Batchelder2017-05-071-7/+5
|
* Make sure xml reports specify valid source filenames. #526Ned Batchelder2017-05-053-7/+15
|
* Add a __repr__ for debuggingNed Batchelder2017-05-051-3/+5
|
* A previous fix was misattributed to issue #526.Ned Batchelder2017-05-041-3/+2
|
* Don't warn that namespace packages have no code. #572Ned Batchelder2017-05-045-16/+57
|
* Refactor common test infrastructure for fiddling sys.path and finding filesNed Batchelder2017-05-047-76/+38
|
* Use correct name for package source files. #526Ned Batchelder2017-05-034-8/+13
|
* Merged in dirk-thomas/coverage.py/fix_init_name (pull request #91)Ned Batchelder2017-05-04123-2856/+4533
|\ | | | | | | fix name for module in __init__.py file
| * Properly round-trip the trace function even when not measuring coverage. #575Ned Batchelder2017-05-024-30/+48
| |
| * Add to gettrace/settrace test to be sure it's re-establishedNed Batchelder2017-04-301-1/+3
| |
| * No need for a pylint scoreNed Batchelder2017-04-301-0/+3
| |
| * update requirements, and use tox-battery to recreate tox as neededNed Batchelder2017-04-306-11/+13
| |
| * Fix: xml report fails in non-ascii directory. #573Ned Batchelder2017-04-303-1/+15
| |
| * Use 2 digits of precision on the coverage badge! :)Ned Batchelder2017-04-291-1/+1
| |
| * Tweak up the new FAQ answers. Thanks, Aron GriffisNed Batchelder2017-04-262-18/+15
| |
| * Add FAQs about nose and tox.Aron Griffis2017-04-221-2/+34
| |
| * Update to pylint 1.7.1Ned Batchelder2017-04-2211-17/+14
| |
| * Add IronPython to the classifiersNed Batchelder2017-04-151-0/+1
| |
| * Print command-line errors to stderr instead of stdoutNed Batchelder2017-04-133-13/+16
| |
| * Use latest pylint, and remove a bad pragmaNed Batchelder2017-04-132-2/+2
| |
| * Add clarification about warnings tests.Ned Batchelder2017-04-121-0/+1
| |
| * Beef up the assert_warnings test helperNed Batchelder2017-04-062-1/+22
| |
| * Convert two warnings tests to non-processNed Batchelder2017-04-062-33/+43
| |
| * As we change test_api.py, this test needs to change... Maybe not a great idea.Ned Batchelder2017-04-061-1/+9
| |
| * Make manylinux wheels be always fast-buildingNed Batchelder2017-04-052-3/+4
| | | | | | | | https://github.com/pypa/python-manylinux-demo/issues/13 for details
| * docker --rm to clean up unneeded containersNed Batchelder2017-04-052-3/+3
| |
| * Bump to b2Ned Batchelder2017-04-052-1/+8
| |
| * Tweaks to release processNed Batchelder2017-04-051-6/+6
| |
| * Coverage 4.4b1Ned Batchelder2017-04-040-0/+0
| |
| * Paperwork for 4.4b1coverage-4.4b1Ned Batchelder2017-04-045-8/+11
| |
| * Run linkcheck last so missing pages won't stop us getting other good things ↵Ned Batchelder2017-04-041-2/+2
| | | | | | | | done.
| * Include the dtd for our referenceNed Batchelder2017-04-041-0/+60
| |
| * Use Cobertura v4 XML format. #570Ned Batchelder2017-04-044-12/+18
| |
| * Properly escape the replacement string for re.subNed Batchelder2017-04-041-1/+1
| |
| * Warnings can be disabledNed Batchelder2017-04-047-7/+59
| |
| * Add slugs to warnings in prep for suppressable warningsNed Batchelder2017-04-034-13/+25
| |
| * One more variation on WindowsNed Batchelder2017-03-311-0/+1
| |
| * A test of the plugin.find_executable_files methodNed Batchelder2017-03-311-0/+52
| |
| * Windows has a different error message for path(float)Ned Batchelder2017-03-301-0/+1
| |
| * Be pickier about the expected failures from plugin tests.Ned Batchelder2017-03-301-7/+26
| |
| * Use new show_stderr flag so we can see errors printed to stderr during ↵Ned Batchelder2017-03-303-3/+5
| | | | | | | | failing tests.
| * Clean up in plugin testsNed Batchelder2017-03-292-9/+7
| |
| * Make the use of coverage.files more uniformNed Batchelder2017-03-281-6/+7
| |
| * Clean up of the new plugin method. Thanks, Emil MadsenNed Batchelder2017-03-284-3/+12
| |
| * Allow plugins to report files they haven't executed.Ned Batchelder2017-03-283-7/+31
| | | | | | | | By Emil Madsen, from: https://github.com/nedbat/coveragepy/pull/28