summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Minor tweak to a warning.Ned Batchelder2011-06-041-1/+1
|
* Fix a test involving optimized-away constant if statements, and add a test ↵Ned Batchelder2011-06-032-1/+16
| | | | about them.
* Move some test modules to keep them out of pylint's hair.Ned Batchelder2011-06-018-1/+2
| | | | | | | | | | --HG-- rename : test/othermods/__init__.py => test/moremodules/othermods/__init__.py rename : test/othermods/othera.py => test/moremodules/othermods/othera.py rename : test/othermods/otherb.py => test/moremodules/othermods/otherb.py rename : test/othermods/sub/__init__.py => test/moremodules/othermods/sub/__init__.py rename : test/othermods/sub/osa.py => test/moremodules/othermods/sub/osa.py rename : test/othermods/sub/osb.py => test/moremodules/othermods/sub/osb.py
* Remove a bunch of warnings from pylint.Ned Batchelder2011-05-311-2/+5
|
* Better handling of the partial-branch exclusion regexes. Finishes issue #113.Ned Batchelder2011-05-318-37/+350
|
* The right way to communicate with a subprocess.Ned Batchelder2011-05-251-2/+2
|
* The current directory auto-inserted into sys.path is now absolute, to better ↵Ned Batchelder2011-05-211-0/+7
| | | | mimic Python execution.
* WIP for partial branch exclusion. #113Ned Batchelder2011-05-172-5/+17
|
* Merge bug_123 work into default.Ned Batchelder2011-04-273-5/+43
|\
| * C trace function now roundtrips properly. Fixes #123 and #125.Ned Batchelder2011-04-273-5/+26
| | | | | | | | | | --HG-- branch : bug_123
| * A fix for bug #123, but it doesn't restore tracing properly yet, still want ↵Ned Batchelder2011-04-251-0/+17
| | | | | | | | | | | | | | to get to the bottom of that. --HG-- branch : bug_123
* | Since people make this mistake, and it's mysterious: accept a single string ↵Ned Batchelder2011-04-251-0/+18
|/ | | | for omit and include.
* Changing the HTML report means updating gold files.Ned Batchelder2011-04-2126-1897/+2373
|
* StyleNed Batchelder2011-04-171-2/+4
|
* StyleNed Batchelder2011-04-171-19/+19
|
* More tests, some refactoring of the code.Ned Batchelder2011-04-171-19/+86
|
* Even better way to test js: build fixtures programmatically, no need for ↵Ned Batchelder2011-04-173-61/+65
| | | | monkeypatching the code under test.
* Javascript testsNed Batchelder2011-04-164-0/+1809
|
* HTML incremental generation should also take the coverage.py version into ↵Ned Batchelder2011-03-271-1/+35
| | | | account: a new version means scrap everything and do it all.
* Remove trailing spacesNed Batchelder2011-03-241-2/+2
|
* Incremental HTML generation. Some cleanup would be good.Ned Batchelder2011-03-243-1/+170
|
* Add a test helper for checking on the existence of files.Ned Batchelder2011-03-224-15/+34
|
* --omit and --include now interpret their values more usefully. Fixes #121.Ned Batchelder2011-03-218-27/+86
|
* A narrower way to check that empty __init__.py files show zero statements.Ned Batchelder2011-03-211-14/+4
|
* All tests should restore sys.pathNed Batchelder2011-03-202-5/+8
|
* A file opened in 'b' mode needs bytes, not strings. Try to do this in a ↵Ned Batchelder2011-03-151-1/+2
| | | | clean-ish way...
* Merge the backout to the tipNed Batchelder2011-03-151-28/+29
|\
| * Backed out changeset c6083fae29bfNed Batchelder2011-03-151-28/+29
| | | | | | | | I don't know what I want to do with this wacky test yet.
* | Automated merge with ssh://bitbucket.org/ned/coveragepyNed Batchelder2011-03-151-31/+51
|\ \ | |/
| * Put the missing-continue test back into the mix.Ned Batchelder2011-03-151-29/+28
| |
| * Figures 2.4 has different answers for the psycho edge cases.Ned Batchelder2011-03-131-2/+2
| |
| * Adjust some tests for PyPy: it's more aggressive about optimizing away ↵Ned Batchelder2011-03-131-2/+23
| | | | | | | | expressions with no side effects.
* | Ugh, newb mistake: Windows needs the b flag to tightly control the bytes in ↵Ned Batchelder2011-03-131-1/+1
|/ | | | the file.
* A different (better) way to avoid warnings when no code has been run.Ned Batchelder2011-02-122-14/+14
|
* Don't warn about not collecting data if we never ran any code in the first ↵Ned Batchelder2011-02-072-13/+23
| | | | place.
* Make this message simpler and clearer.Ned Batchelder2011-02-071-2/+2
|
* Add tests and doc for Brandon's -m flag.Ned Batchelder2011-02-067-3/+85
|
* Some pylint cleanups.Ned Batchelder2011-02-011-3/+7
|
* Pylint 0.23.0 'deprecated' disable-msg.Ned Batchelder2011-02-0112-13/+13
|
* A bunch more places where a file close should be in a finally clause.Ned Batchelder2011-01-304-6/+19
|
* Add a test for the newline= feature of make_fileNed Batchelder2011-01-301-0/+8
|
* A test for parsing files with different line endings.Ned Batchelder2011-01-302-3/+37
|
* This test isn't ready yet, but I don't want it in my working tree for now.Ned Batchelder2010-11-071-0/+13
|
* Detect when our trace function is yanked out from under us, and warn the ↵Ned Batchelder2010-11-061-1/+48
| | | | user. Finishes, but does not fix, issue #93.
* Make sure we can get multiple warnings of the same kind.Ned Batchelder2010-11-061-1/+2
|
* If you called sys.exit() with no argument, coverage.py got tangled. Thanks, ↵Ned Batchelder2010-09-181-0/+17
| | | | Brodie Rao.
* Fix the url canonicalizer to also deal with release urls.Ned Batchelder2010-09-083-3/+3
|
* Format numbers with %g in xmlreport, since py3.2 uses more digits in str() ↵Ned Batchelder2010-09-062-5/+5
| | | | than previous Pythons, throwing off the gold files. We didn't need 9 digits of precision anyway...
* The XML report was missing an attribute Cobertura needed. Fixes #65 and #81.Ned Batchelder2010-09-041-1/+1
|
* Now that we include 0% files in the data, they aren't 'executed', they are ↵Ned Batchelder2010-09-031-9/+9
| | | | 'measured'.