Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | | Provide a more useful error message if failing to run a non-Python file. #514 | Ned Batchelder | 2016-12-17 | 4 | -6/+36 | |
| | | | | | ||||||
* | | | | | Oops, wrong name | Ned Batchelder | 2016-12-17 | 1 | -1/+1 | |
| | | | | | ||||||
* | | | | | Put a count of contributors into the authors string | Ned Batchelder | 2016-12-17 | 2 | -2/+8 | |
| | | | | | ||||||
* | | | | | Rename AUTHORS.txt to CONTRIBUTORS.txt | Ned Batchelder | 2016-12-17 | 4 | -2/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | --HG-- rename : AUTHORS.txt => CONTRIBUTORS.txt | |||||
* | | | | | Clean up and credit the #265 work | Ned Batchelder | 2016-12-16 | 2 | -6/+9 | |
| | | | | | ||||||
* | | | | | Merged in dachary/coverage.py/issue-265 (pull request #105) | Ned Batchelder | 2016-12-16 | 3 | -3/+13 | |
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | --source and --include are mutually exclusive #265 | |||||
| * | | | | --source and --include are mutually exclusive #265 | loic@dachary.org | 2016-12-16 | 3 | -3/+13 | |
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a sanity_check function to CoverageConfig to perform sanity checks after configuration values have been collected from files, arguments etc. Raise an error if --source and --include are both set. The config tests are amended because some of them have both source and include set. Based on the original patch from Nathan Land close #265 --HG-- branch : issue-265 extra : amend_source : 2c0e1173285d07174bc632fb3a8df437201607a6 | |||||
* | | | | That experiment didn't work | Ned Batchelder | 2016-12-14 | 1 | -2/+0 | |
| | | | | ||||||
* | | | | Try more travis environments | Ned Batchelder | 2016-12-14 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | Don't lint sphinx output | Ned Batchelder | 2016-12-14 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Update CHANGES for issue #524 | Ned Batchelder | 2016-12-14 | 1 | -0/+4 | |
| | | | | ||||||
* | | | | Give this variable a more descriptive name | Ned Batchelder | 2016-12-14 | 1 | -8/+8 | |
| | | | | ||||||
* | | | | Merged in dachary/coverage.py/issue-524-2 (pull request #98) | Ned Batchelder | 2016-12-14 | 2 | -31/+67 | |
|\ \ \ \ | | | | | | | | | | | | | | | | report must ignore skipped files #524 | |||||
| * | | | | report must ignore skipped files #524 | loic@dachary.org | 2016-12-12 | 2 | -31/+67 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When files are 100% covered and --skipped-covered is specified, they must not be taken into account to format the text report. It is specially useful when a long filename is skipped. --HG-- branch : issue-524-2 | |||||
* | | | | | Loïc Dachary is clearly going to be making a dent here... | Ned Batchelder | 2016-12-13 | 1 | -0/+1 | |
| | | | | | ||||||
* | | | | | Merged in dachary/coverage.py/issue-523 (pull request #99) | Ned Batchelder | 2016-12-13 | 1 | -1/+1 | |
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | add PYTHONPATH to dochtml target #523 | |||||
| * | | | | | add PYTHONPATH to dochtml target #523 | loic@dachary.org | 2016-12-13 | 1 | -1/+1 | |
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | So that sphinx-build can import the coverage modules when needed by autoclass and autofunction. --HG-- branch : issue-523 | |||||
* | | | | | Tidy up | Ned Batchelder | 2016-12-13 | 1 | -1/+0 | |
|/ / / / | ||||||
* | | | | Document report API skip_covered argument | loic@dachary.org | 2016-12-12 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | Add Python 3.5 CI | Arcadiy Ivanov | 2016-12-11 | 1 | -0/+9 | |
| | | | | | | | | | | | | | | | | fixes #23 | |||||
* | | | | Properly return final status when measuring our own coverage | Ned Batchelder | 2016-12-07 | 1 | -1/+3 | |
| | | | | ||||||
* | | | | Clarify the latest changelog entry | Ned Batchelder | 2016-12-06 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | Prevent UnicodeErrors in HTML reports with Unicode configuration values | Ned Batchelder | 2016-12-06 | 3 | -3/+13 | |
| | | | | ||||||
* | | | | Oh 2.6, you get me every time | Ned Batchelder | 2016-12-06 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | A better way to find the pth directory | Ned Batchelder | 2016-12-06 | 1 | -14/+18 | |
| | | | | ||||||
* | | | | Remove the filelock experiment | Ned Batchelder | 2016-12-06 | 2 | -9/+4 | |
| | | | | ||||||
* | | | | Silence an internal pytest deprecation warning | Ned Batchelder | 2016-12-05 | 1 | -0/+6 | |
| | | | | ||||||
* | | | | Merged in nicoddemus/coverage.py/latest-pytest (pull request #94) | Ned Batchelder | 2016-12-05 | 1 | -1/+1 | |
|\ \ \ \ | | | | | | | | | | | | | | | | Use pytest>=3.0.5 | |||||
| * | | | | Use pytest>=3.0.5 | Bruno Oliveira | 2016-12-05 | 1 | -1/+1 | |
|/ / / / | | | | | | | | | | | | | | | | | --HG-- branch : latest-pytest | |||||
* | | | | No xdist on appveyor | Ned Batchelder | 2016-12-05 | 1 | -0/+4 | |
| | | | | ||||||
* | | | | Need to clean up in the right order | Ned Batchelder | 2016-12-04 | 1 | -1/+2 | |
| | | | | ||||||
* | | | | Quick hack to try avoiding stepping on each others' pth files | Ned Batchelder | 2016-12-04 | 2 | -12/+25 | |
| | | | | ||||||
* | | | | Older setuptools works, how about newer? | Ned Batchelder | 2016-12-04 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Try rolling back setuptools to fix appveyor | Ned Batchelder | 2016-12-04 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Test excluded lines in the html report | Ned Batchelder | 2016-11-30 | 3 | -4/+18 | |
| | | | | ||||||
* | | | | A test of status.json having the wrong format | Ned Batchelder | 2016-11-29 | 1 | -0/+22 | |
| | | | | ||||||
* | | | | status.json file is more compact | Ned Batchelder | 2016-11-29 | 1 | -1/+1 | |
| |/ / |/| | | ||||||
* | | | More-accurate pragmas | Ned Batchelder | 2016-11-29 | 3 | -4/+5 | |
| | | | ||||||
* | | | Cover a few edge cases in phystokens.py | Ned Batchelder | 2016-11-28 | 1 | -12/+27 | |
| | | | ||||||
* | | | .rst max line is 79 | Ned Batchelder | 2016-11-28 | 2 | -2/+5 | |
| | | | ||||||
* | | | Async protocol changed in 3.5.2. Remove a deprecation warning | Ned Batchelder | 2016-11-27 | 1 | -1/+1 | |
| | | | ||||||
* | | | Avoid flags in regexes we combine | Ned Batchelder | 2016-11-27 | 2 | -2/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These regexes get piped together with other regexes, and flags not at the beginning of the regex raise DeprecationWarnings. Also, I'm not sure what the flag will do when combined with the other regexes. Also also, do people really use upper-case pragmas? --HG-- extra : amend_source : 0123e985b9ddba0a7ef18276816a05bdb3f8d170 | |||||
* | | | Nope, that wasn't it | Ned Batchelder | 2016-11-26 | 1 | -1/+1 | |
| | | | ||||||
* | | | Try no xdist to see if appveyor will be happy | Ned Batchelder | 2016-11-26 | 1 | -1/+1 | |
| | | | ||||||
* | | | Fix two problems with xdist'ed tests | Ned Batchelder | 2016-11-26 | 2 | -2/+5 | |
| | | | ||||||
* | | | Latest versions of everything | Ned Batchelder | 2016-11-26 | 5 | -10/+10 | |
| | | | ||||||
* | | | Updates for pytest | Ned Batchelder | 2016-11-26 | 1 | -44/+46 | |
| | | | ||||||
* | | | Enable pytest warnings, and fix/silence a few | Ned Batchelder | 2016-11-26 | 4 | -3/+7 | |
| | | | ||||||
* | | | Change nose example to pytest example. #521 | Ned Batchelder | 2016-11-26 | 1 | -4/+5 | |
| | | | ||||||
* | | | Use xdist to run tests faster | Ned Batchelder | 2016-11-23 | 2 | -1/+2 | |
| | | |