summaryrefslogtreecommitdiff
path: root/CoverageTestRunner.py
AgeCommit message (Collapse)AuthorFilesLines
2017-12-30Drop: unused importLars Wirzenius1-3/+0
2017-12-30Change: move __version__ into coveragetestrunner/version.pyLars Wirzenius1-1/+1
This is so that it can be updated automatcally using my bumper tool.q
2016-12-04Fix so ./testrun works with Python3Lars Wirzenius1-24/+24
2015-10-25Prepare release 1.11coverage-test-runner-1.11Lars Wirzenius1-1/+1
2015-09-07Adapt Salim's change for older coverage.pyLars Wirzenius1-1/+6
2015-09-07Adjust for removal of top-level module functions in coverage 4.0a6Michel Alexandre Salim1-5/+6
2015-04-18Make regexp string r''Lars Wirzenius1-1/+1
2015-04-18Fix whitespace problemsLars Wirzenius1-28/+27
2013-10-06Revert patch from JannisLars Wirzenius1-1/+1
Merging this breaks test suite for cliapp. I don't know why.
2013-09-27Fix importing submodules with the same basenamesJannis Pohlmann1-1/+1
This patch fixes a bug in CoverageTestRunner.py, where submodules with the same basenames were not loaded into separate module objects. Because the module names passed to imp.load_module() were the same, previously loaded modules would be reloaded in place, causing different problems: 1. Imports of the affected modules in the test and tested code would sometimes import a different module and cause AttributeError exceptions when expected symbols were not present in the imported module. 2. Sometimes, all but one of the imported modules would incorrectly be considered to have zero test coverage.
2013-04-17Bump version number for releaseLars Wirzenius1-1/+1
2013-04-17Prepare release version 1.9.1Lars Wirzenius1-1/+1
2013-04-16Fix license summary shortnamesLars Wirzenius1-1/+1
GPL-3+, not GPL3+. The dash is significant.
2013-04-16Add license summaries and update copyright infoLars Wirzenius1-1/+3
2012-09-23Prepare release 1.9Lars Wirzenius1-1/+1
2012-01-19disable logging output while unit tests are runLars Wirzenius1-2/+23
2011-12-26disable progress reporting when output does not go to a terminalLars Wirzenius1-3/+7
2011-09-04Release version 1.7.1.Lars Wirzenius1-3/+3
2011-09-04Release version 1.7.Lars Wirzenius1-1/+1
2011-08-29Normalize paths in --ignored-missing-from file.Lars Wirzenius1-0/+1
This avoids having to say ./setup.py: one can just say setup.py now. The old form also works still, though.
2011-08-29Find tests in all specified directories.Lars Wirzenius1-2/+2
2011-08-29Change CoverageTestRunner.py to run stuff only in named dirs.Lars Wirzenius1-2/+5
2011-06-03Bump upstream version number.Lars Wirzenius1-1/+1
2011-06-03Update setup.py for PyPI submission.Lars Wirzenius1-0/+3
2011-06-02Update copyright license to GPL3+.Lars Wirzenius1-9/+7
2011-02-18Ignore setup.py by default.Lars Wirzenius1-1/+1
2011-02-18Report number of excluded modules.Lars Wirzenius1-0/+8
2010-06-07Release version 1.4.1, with profiling support.Lars Wirzenius1-1/+6
2010-02-14Make threshold for reporting slow tests be user-settableLars Wirzenius1-1/+2
via $COVERAGE_TEST_RUNNER_MAX_TIME.
2009-09-30Initialize variable even if --ignored-missing-from is not used.Lars Wirzenius1-0/+2
2009-09-30Added --ignore-missing-from.Lars Wirzenius1-3/+14
2009-09-30Complain about missing test modules.#Lars Wirzenius1-15/+46
2008-07-19Report number of excluded statements in the output.Lars Wirzenius1-3/+14
2008-07-15Remove directory path from filenames in the output, if it is the current ↵Lars Wirzenius1-1/+7
working directory.
2008-05-18Add a regular expression to exclude #pragmas, a la coverage.py's default ↵Lars Wirzenius1-0/+1
behavior.
2008-01-23Added --ignore-coverage option when run as a script.Lars Wirzenius1-3/+12
2008-01-09When running module as a script, if the tests failed, exit with a non-zero ↵Lars Wirzenius1-1/+3
exit code.
2007-11-11Make it possible to reload modules outside the normal module search path ↵Lars Wirzenius1-0/+2
(sys.path).
2007-11-11Add helpers to easily run CoverageTestRunner in a directory.Lars Wirzenius1-0/+11
2007-11-11Automatically find module/test module pairs in a directory tree.Lars Wirzenius1-1/+24
2007-11-11Initial version, snarfed from another project of mine.Lars Wirzenius1-0/+155