summaryrefslogtreecommitdiff
path: root/coverage/files.py
Commit message (Collapse)AuthorAgeFilesLines
* Windows fixes due to data changesNed Batchelder2015-07-261-1/+4
|
* Get rid of napoleon style docstrings, they don't format nicely.Ned Batchelder2015-07-261-4/+3
|
* Add license mention to the top of all files. #313.Ned Batchelder2015-07-241-0/+3
|
* Be more specific with PathAliases tests.Ned Batchelder2015-06-161-1/+3
|
* Remove FileLocator from PathAliases. Now it always produces canonicalized paths.Ned Batchelder2015-06-131-6/+5
|
* Change FileLocator from a class to module-level functionsNed Batchelder2015-06-131-42/+50
|
* Tweak up the last mergeNed Batchelder2015-06-071-0/+1
|
* Correct path normalization on Windows: the drive was not normalized ↵Ionel Cristian Mărieș2015-06-061-1/+1
| | | | | | | (different inputs like "c:\asdf" and "C:\asdf" did not return the same path). --HG-- branch : ionelmc/correct-path-normalization-on-windows-th-1433618255921
* Collect all the nudgy environment checks into coverage.envNed Batchelder2015-01-181-2/+3
|
* Move python source understanding into python.pyNed Batchelder2015-01-011-77/+1
|
* Don't use %r for filenames, on windows, the backslashes go nuts.Ned Batchelder2014-12-281-1/+1
|
* Further consolidation of code reading Python source.Ned Batchelder2014-12-281-7/+31
|
* Refactor some of the encoding detectionNed Batchelder2014-12-271-3/+1
|
* Make .pyw work again.Ned Batchelder2014-12-271-10/+18
|
* Unify and clarify reading Python source. Probably broke .pyw filesNed Batchelder2014-12-261-6/+7
|
* Move some code, and fix pep8 thingsNed Batchelder2014-12-141-3/+8
|
* Zip files always produce bytes, and test that we get them decoded properly.Ned Batchelder2014-12-131-5/+6
|
* Source is always Unicode in HTML code. More refactoring to come.Ned Batchelder2014-12-121-23/+44
|
* Fix english word.Ned Batchelder2014-12-021-1/+1
|
* Try out pylint spelling. Kinda noisy, but fixed some stuff.Ned Batchelder2014-11-271-1/+1
|
* Remove unused .add methods, and show the source_pkg_match in the debug outputNed Batchelder2014-11-251-10/+1
|
* Merged pull request 42, fixing issue #328.Ned Batchelder2014-11-241-0/+33
|\
| * ned code review, part 1Buck Golemon2014-11-141-2/+1
| | | | | | | | | | --HG-- branch : __main__-support
| * ModuleFinder no longer takes a main-module argument.Buck Golemon2014-11-141-15/+5
| | | | | | | | | | | | | | --HG-- branch : __main__-support extra : rebase_source : 3f4c29876960153907b65b6e8e818b8228ca4ec0 extra : histedit_source : 6567adaf9c89483b71501fd91e9d3c83ed3daec7%2C2c5c8a7af95b8b26af384b9a65815d077e4313ec
| * make --source and -m play nice togetherbuck2014-10-151-0/+44
| | | | | | | | | | | | --HG-- branch : __main__-support extra : rebase_source : c9ca9fddecafddd5ef4db9cc64ca1c0972130aab
* | fnmatch doesn't seem to use dollar any moreNed Batchelder2014-11-231-3/+2
|/
* On Windows, we need file matching to be case-insensitive.Ned Batchelder2014-09-211-2/+7
|
* Make the Fnmatcher work right on Windows.Ned Batchelder2014-09-211-1/+6
|
* Use a set where a set is appropriateNed Batchelder2014-08-191-1/+1
|
* Remove debuggingNed Batchelder2014-06-031-1/+0
|
* Fix the new FnmatchMatcher for >100 patternsNed Batchelder2014-06-031-0/+1
|
* Avoid filling the fnmatch cacheNed Batchelder2014-06-021-5/+3
|
* Now I can use tuples with startswith and endswith.Ned Batchelder2013-10-191-1/+1
| | | | | --HG-- branch : 4.0
* Allow relative paths in the [paths] aliases. #267.Ned Batchelder2013-09-261-2/+15
|
* Find .pyw files when searching for source files.Ned Batchelder2013-09-161-2/+2
|
* Give the matchers a way to get info out of them.Ned Batchelder2013-09-061-0/+8
|
* Tweaks to Matt's merged pull request.Ned Batchelder2013-04-211-2/+1
|
* Removed redundant code; Changed a setup.py test to ensure that the proper ↵desmaj2013-03-181-1/+1
| | | | setup.py is imported; Changed the 'oddball' tests to use a filename whitelist instead of a blacklist (so that tests run better under instrumental
* If a file is missing, don't show an error message with the wrong path. #60.Ned Batchelder2012-11-231-9/+5
|
* A faster way to get the actual path of Windows files, especially when ↵Ned Batchelder2012-11-111-29/+30
| | | | operating on lots of files in the same directory.
* WTF?Ned Batchelder2012-11-111-3/+3
|
* Windows now reports file names in their correct case. #89 and #203.Ned Batchelder2012-11-111-4/+45
|
* Upgrading pylint means fixing more nits.Ned Batchelder2012-11-101-1/+1
|
* Fix #163: embarassingly, the wildcards for include and omit didn't work ↵Ned Batchelder2012-10-291-6/+27
| | | | properly for reporting functions. This is now fixed.
* Fix #194: a file path could have its prefix twice.Ned Batchelder2012-09-081-1/+1
|
* With --source=dir, dir/__init__.py need not exist any longer, but ↵Ned Batchelder2012-07-041-3/+11
| | | | dir/sub/__init__.py still does.
* When looking for python files, don't take suspicious ones. Fixes #168.Ned Batchelder2012-03-241-1/+4
|
* Remove debugging effluviaNed Batchelder2011-09-031-1/+0
|
* Fix the [paths] feature to actually work for reporting.Ned Batchelder2011-09-031-1/+7
|
* More windows tweaking.Ned Batchelder2011-08-231-0/+4
|