summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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-041-0/+1
| |
* | 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
* | Don't use the aggressive singleton for normal debuggingNed Batchelder2017-03-231-1/+1
| |
* | Pids can be less that 5 digitsNed Batchelder2017-03-231-1/+1
| |
* | Big refactor of debug loggingNed Batchelder2017-03-226-83/+160
| |
* | Say a little more about --timidNed Batchelder2017-03-181-1/+2
| |
* | Minimal IronPython support.Ned Batchelder2017-03-147-3/+24
| | | | | | | | | | IronPython is weird: 2.7.7 has "str is unicode", and unicode.encode produces unicode! f_lasti is missing, and frame globals are missing.
* | pid also annotates warningsNed Batchelder2017-03-121-1/+1
| |
* | Fix the appveyor badge, broken since we pointed it to githubNed Batchelder2017-03-111-1/+1
| |
* | Use capital-CoverageNed Batchelder2017-03-112-61/+59
| | | | | | | | | | --HG-- extra : amend_source : 926b6475306f6463c48b2d3053f5dcd431941937
* | Ugly: have to pragma away nested coverageNed Batchelder2017-03-111-24/+24
| |
* | Cleanly stop coverage objects, for metacovNed Batchelder2017-03-112-1/+7
| | | | | | | | | | Without these cov.stop() calls, the collector stack is wrong when doing meta-coverage.
* | Move fail-under tests from process-oriented integration tests to ↵Ned Batchelder2017-03-082-54/+61
| | | | | | | | fake-oriented unit tests
* | Refactor command_line into a function.Ned Batchelder2017-03-082-6/+18
| |
* | Give should_fail_under pure tests, so we don't need processes to test ↵Ned Batchelder2017-03-082-39/+24
| | | | | | | | | | | | | | numeric comparisons --HG-- extra : amend_source : 36d1fcdd986d1c2b4cd2af0d96d269e84fa40c2d
* | Make should_fail_under an even more pure function.Ned Batchelder2017-03-082-6/+8
| |
* | Control codecov more tightlyNed Batchelder2017-03-062-2/+2
| |
* | OK, skip 3.6 for nowNed Batchelder2017-03-051-4/+0
| |
* | Travis fixes: get 3.6 installed; use conditional that worksNed Batchelder2017-03-051-9/+11
| |
* | Make the list of builtins more compact, since they are never the problem in ↵Ned Batchelder2017-03-051-2/+13
| | | | | | | | these tests
* | More docstring.Ned Batchelder2017-03-051-0/+3
| |
* | Describe and relabel a test that has nothing to do with fail-under.Ned Batchelder2017-03-041-2/+6
| |
* | Move the logic for fail-under to a testable functionNed Batchelder2017-03-042-13/+24
| |