summaryrefslogtreecommitdiff
path: root/coverage/files.py
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 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
|
* Move a method to be a function.Ned Batchelder2011-08-221-11/+12
|
* PathAliases munges the fnmatch pattern, and could have accidentally borked ↵Ned Batchelder2011-08-221-1/+1
| | | | the match.
* Cleanups for lint and older PythonsNed Batchelder2011-08-211-2/+4
|
* The machinery to map paths through aliases for merging coverage data from ↵Ned Batchelder2011-08-211-1/+77
| | | | disparate machines. Part of fixing #17.
* A file opened in 'b' mode needs bytes, not strings. Try to do this in a ↵Ned Batchelder2011-03-151-3/+2
| | | | clean-ish way...
* Some prep work for finding completely uncovered files.Ned Batchelder2010-08-301-0/+14
|
* Add some __repr__ methods to help when debugging.Ned Batchelder2010-06-211-0/+6
|
* The 'source' option is a list of directories or packages to limit coverage's ↵Ned Batchelder2010-06-131-1/+35
| | | | attention.
* Undo Ben Finney's patch to use the os.path methods. os.path.commonprefix is ↵Ned Batchelder2010-03-211-6/+6
| | | | both useless (beacause it's based on characters, not path components) and wrong (because to compute a relative path name, we need relative to a particular directory, or absolute, not some middle case).
* I like this punctuation betterNed Batchelder2010-03-131-1/+2
|
* Merged Ben Finney's use-os-path-module fixes (again?)Ned Batchelder2010-03-131-1/+3
|\
| * Add more tests of omitting files during HTML reporting, and a better way to ↵Ned Batchelder2009-12-271-0/+2
| | | | | | | | enable re-importing modules during test_farm tests.
| * version_info is a nicer way to check Python versions than hexversion is.Ned Batchelder2009-12-131-1/+1
| |
* | Use ‘os.path.commonprefix’ to find the “relative directory” at the ↵Ben Finney2010-02-031-2/+4
|/ | | | start of a path.
* Massive eol whitespace clean-up.Ned Batchelder2009-12-021-6/+6
|
* Everything should derive from object.Ned Batchelder2009-10-241-1/+1
|
* Make egg source reading work on py2k and py3k, though i don't like it much...Ned Batchelder2009-09-301-3/+5
|
* Working toward reading source from eggs, but this isn't right on Py3k yet.Ned Batchelder2009-09-291-2/+3
|
* The best way to get py3k support: same source runs on both, with some ↵Ned Batchelder2009-09-221-1/+1
| | | | contortions.
* Better docstrings.Ned Batchelder2009-05-061-6/+11
|
* FileLocator is a better name than FileWrangler.Ned Batchelder2009-03-111-1/+1
|
* Split out the filename operations; Morf -> CodeUnit.Ned Batchelder2009-03-111-0/+65