summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Coverage 4.3.1Ned Batchelder2016-12-280-0/+0
| |
| * Gearing up for 4.3.1coverage-4.3.1Ned Batchelder2016-12-285-6/+29
| |
| * Revert the check for conflicting --source and --include. Closes #541, ↵Ned Batchelder2016-12-283-0/+12
| | | | | | | | re-opens #265
| * Fix installation in ascii-default environments. #540Ned Batchelder2016-12-273-3/+12
| |
| * Push version to 4.3.1a0Ned Batchelder2016-12-272-1/+7
| |
| * Kitting changes: no more register, and only one sdistNed Batchelder2016-12-272-2/+1
| |
| * Coverage 4.3Ned Batchelder2016-12-270-0/+0
| |
| * A better way to get good random numberscoverage-4.3Ned Batchelder2016-12-271-4/+1
| |
| * Windows Python 3.6 doesn't seed well. Hack around it.Ned Batchelder2016-12-271-0/+3
| |
| * Try doing windows py3 meta on 3.5Ned Batchelder2016-12-271-4/+4
| |
| * Get a Windows 3.6 buildNed Batchelder2016-12-271-0/+12
| |
| * Cog is still using noseNed Batchelder2016-12-271-0/+1
| |
| * This file changed nameNed Batchelder2016-12-261-0/+0
| |
| * New sample HTMLNed Batchelder2016-12-2612-23/+26
| |
| * Doc updates for 4.3Ned Batchelder2016-12-267-12/+71
| |
| * Make sure the excepthook is measured.Ned Batchelder2016-12-261-0/+9
| |
| * sys.excepthook creditNed Batchelder2016-12-262-0/+7
| |
| * Don't stress over PyPy differences, and fix file namesNed Batchelder2016-12-261-9/+13
| |
| * Suppress the coverage.py frame when reporting exceptionsNed Batchelder2016-12-261-0/+2
| |
| * Make excepthook execution more accurate. Pypy tests failingNed Batchelder2016-12-262-6/+17
| |
| * Put the excepthook tests in their own class for convenienceNed Batchelder2016-12-261-1/+4
| |
| * Merged in andrewhoos/coverage.py (pull request #93)Ned Batchelder2016-12-262-1/+71
| |\ | | | | | | | | | Explicitely call sys.excepthook
| | * Update change with tests and fixes for testsAndrew Hoos2016-11-302-8/+69
| | |
| | * Remove the unused importAndrew Hoos2016-11-291-1/+0
| | |
| | * Limit changes to only execfile.pyAndrew Hoos2016-11-292-2/+4
| | |
| | * Update code to better handle calling sys.excepthook when it throwsAndrew Hoos2016-11-292-5/+9
| | |
| | * Update handling of sys.excepthook to only call custom excepthooks and ↵Andrew Hoos2016-11-291-1/+6
| | | | | | | | | | | | re-raise exceptions
| | * Explicitely call sys.excepthookAndrew Hoos2016-11-291-2/+1
| | | | | | | | | | | | https://bitbucket.org/ned/coveragepy/issues/535/sysexcepthook-is-not-called
| * | Thanks to Cosimo Lupo for the fixNed Batchelder2016-12-262-0/+4
| | |
| * | Merged in anthrotype/coverage.py/check-source-isdir (pull request #118)Ned Batchelder2016-12-260-0/+0
| |\ \ | | | | | | | | | | | | check "source" isdir, not just exists; there could be a file with same name
| * | | control.Coverage._init: check "source" is a directory, not just it exists; ↵check-source-isdirCosimo Lupo2016-12-251-1/+1
| |/ / | | | | | | | | | there could be a file with that name
| * | gevent 1.2.0 didn't work well, let's stick with 1.1.2 for nowNed Batchelder2016-12-241-1/+1
| | |
| * | Use the latest of everythingNed Batchelder2016-12-244-10/+10
| | |
| * | The name of the section is 'Specifying source files'Ned Batchelder2016-12-241-1/+1
| | |
| * | Merged in dachary/coverage.py/issue-425 (pull request #113)Ned Batchelder2016-12-242-3/+4
| |\ \ | | | | | | | | | | | | sources that do not end with .py\w? are ignored #425
| | * | sources that do not end with .py\w? are ignored #425issue-425loic2016-12-182-3/+4
| | | | | | | | | | | | | | | | close #425
| * | | No need for subprocesses to test HTML reportingNed Batchelder2016-12-241-8/+6
| | | |
| * | | Add html --skip-covered to the changesNed Batchelder2016-12-241-0/+5
| | | |
| * | | Merged in dachary/coverage.py/issue-433-2 (pull request #112)Ned Batchelder2016-12-246-6/+53
| |\ \ \ | | | | | | | | | | | | | | | implement --skip-covered for html report #433
| | * | | html report --skip-covered with branches #433issue-433-2loic2016-12-192-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a test because the code path is significantly different. Also document --skip-covered with the coverage html command. close #433
| | * | | implement --skip-covered for html report #433loic2016-12-185-6/+33
| | |/ / | | | | | | | | | | | | close #433
| * | | Update changes and contributors for #502Ned Batchelder2016-12-242-1/+7
| | | |
| * | | 2.6 and 2.7 are not different wrt constants in while loopsNed Batchelder2016-12-242-13/+6
| | | |
| * | | Provide some help in interpreting test failuresNed Batchelder2016-12-241-3/+3
| | | |
| * | | Move the test program into the testNed Batchelder2016-12-246-17/+16
| | | |
| * | | Merged in dachary/coverage.py/issue-502-7 (pull request #117)Ned Batchelder2016-12-240-0/+0
| |\ \ \ | | | | | | | | | | | | | | | also use AST for while constants in python-2.7 #502
| * | | | also use AST for while constants in python-2.7 #502issue-502-7loic2016-12-156-10/+35
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | The node.id is set to False, True or None is python-2.7: there is no reason to only check for it with python-3. It is more reliable than using the DEFAULT_PARTIAL_ALWAYS regexps on source lines. close #502
| * | | Bug #496 wasn't about the single-line continue, just the constant while.Ned Batchelder2016-12-181-3/+4
| | | |
| * | | Fix #496, while-true loop with a continue.Ned Batchelder2016-12-183-5/+28
| | | |
| * | | More parser code clean-upNed Batchelder2016-12-181-14/+25
| | | |