summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Python 3.7 tweaked the layout of .pyc filesNed Batchelder2018-01-102-12/+32
|
* Wrap some lines better.Ned Batchelder2018-01-101-4/+4
|
* Skip a test that fails due to a bug in PyPy3-5.10Ned Batchelder2018-01-071-1/+5
|
* Merged in jdufresne/coverage.py (pull request #135)Ned Batchelder2018-01-067-13/+13
|\ | | | | | | Update all Read the Docs links to use https
| * Update all Read the Docs links to use httpsJon Dufresne2018-01-067-13/+13
| |
* | A new kind of plug-in: configurers. #563Ned Batchelder2018-01-069-98/+216
|/
* Can't use latest pytest yet.Ned Batchelder2018-01-061-1/+3
|
* There will be other kinds of pluginsNed Batchelder2017-12-263-8/+8
|
* Correct a docstring.Ned Batchelder2017-12-261-1/+1
|
* Update testing requirementsNed Batchelder2017-12-236-10/+10
|
* Let greenlet play along with pylintNed Batchelder2017-12-231-0/+2
|
* Pylint 1.8.1, and fix its new warningsNed Batchelder2017-12-237-4/+8
|
* Remove an unneeded callNed Batchelder2017-12-231-3/+1
|
* Add a little clarification to the quick startNed Batchelder2017-12-191-0/+6
|
* Overlooked this pinNed Batchelder2017-12-061-1/+1
|
* Thanks, Jon DufresneNed Batchelder2017-11-261-0/+1
|
* Include license file in the generated wheel packageJon Dufresne2017-11-261-0/+3
| | | | | | | | The wheel package format supports including the license file. This is done using the [metadata] section in the setup.cfg file. For additional information on this feature, see: https://wheel.readthedocs.io/en/stable/index.html#including-the-license-in-the-generated-wheel-file
* Remove codesponsor, which is shutting down.Ned Batchelder2017-11-241-7/+0
|
* Commented-out debugging of pytracerNed Batchelder2017-11-242-6/+26
|
* Scooch version to 4.4.3Ned Batchelder2017-11-052-1/+9
|
* The commits-since badge seems sillyNed Batchelder2017-11-051-5/+1
|
* Coverage 4.4.2Ned Batchelder2017-11-050-0/+0
|
* Latest sample HTMLcoverage-4.4.2Ned Batchelder2017-11-0511-2453/+2387
|
* One more 3.7Ned Batchelder2017-11-041-1/+1
|
* Version 4.4.2 prepNed Batchelder2017-11-046-9/+10
|
* Another approach to solving the 'dictionary changed size during iteration' ↵Ned Batchelder2017-11-042-5/+28
| | | | problem
* One start() was missing a stop(), which caused meta issues on appveyorNed Batchelder2017-11-041-0/+1
|
* Point 'home page' on pypi to bitbucketNed Batchelder2017-11-043-4/+4
|
* More info when _collectors is surprisingNed Batchelder2017-11-041-0/+7
|
* DesperationNed Batchelder2017-11-041-1/+1
|
* Appveyor doesn't seem happy with 2.6 any more, so forget itNed Batchelder2017-11-041-12/+0
|
* Skip an obscure case that confuses me on WindowsNed Batchelder2017-11-041-1/+6
|
* Use the real implementation of del_environNed Batchelder2017-11-042-39/+5
|
* Fix that thingNed Batchelder2017-11-031-1/+1
|
* Try protecting test processes from coverage envvarsNed Batchelder2017-11-031-0/+41
|
* Use docker run --init so that we can interrupt tests if need beNed Batchelder2017-10-262-3/+3
|
* Use the manylinux docker image for testing alsoNed Batchelder2017-10-263-9/+14
|
* Root is acceptable as a combining path (the manylinux tests end up with one ↵Ned Batchelder2017-10-262-3/+14
| | | | of these)
* Add the latest warning to the docs, and give them consistent punctuationNed Batchelder2017-10-243-3/+9
|
* Clean up and credit for #265 and #101Ned Batchelder2017-10-242-3/+11
|
* Make the warning about --include and --source be a real warningNed Batchelder2017-10-242-6/+4
|
* Left over import from deleting a testNed Batchelder2017-10-241-2/+0
|
* Move the --source and --include check so it's only during 'run'Ned Batchelder2017-10-241-2/+3
|
* * --source and --include are mutually exclusive (take 2) #265loic2017-01-078-25/+59
| | | | | close #265 close #101
* Belatedly add a test for #541, so we can fix #265 for realNed Batchelder2017-10-241-0/+26
|
* Bug 581 was fixed, don't need the skipped test any moreNed Batchelder2017-10-231-38/+0
|
* Latest pylintNed Batchelder2017-10-231-1/+1
|
* Explicitly specified secondary config files are properly read. #588Ned Batchelder2017-10-213-26/+68
|
* A little cleanup for #581Ned Batchelder2017-10-213-7/+21
|
* Merged in ogrisel/coverage.py/fix-thread-safety (pull request #127)Ned Batchelder2017-10-214-6/+123
|\ | | | | | | FIX thread-safe Collector.save_data()