summaryrefslogtreecommitdiff
path: root/tests/test_process.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Run test in a 2.6-compatible wayNed Batchelder2016-11-171-1/+1
|
* Don't collapse in an ascii-only file-world. #533Ned Batchelder2016-11-171-0/+17
|
* Ensure random suffixes are different after forkingNed Batchelder2016-09-221-5/+10
|
* Use latest pylintNed Batchelder2016-08-071-1/+1
|
* Combining twice shouldn't lose data. #412, #516Ned Batchelder2016-08-071-1/+11
|
* Add a test that .pth measurement doesn't include existing dataNed Batchelder2016-07-291-0/+7
|
* Cover a few more lines in cmdline.pyNed Batchelder2016-07-101-0/+38
|
* Update pylint to 1.5.6Ned Batchelder2016-06-251-1/+3
|
* Fixes two overlookeds self.skip callsNed Batchelder2016-06-251-2/+2
|
* Combine no longer appends by defaultNed Batchelder2016-06-251-1/+1
| | | | | | | | | | | Combine used to always load an existing .coverage file. This lead to confusing results and extra tox-clean steps. Now the default is to not load the existing file, though a new --append switch on coverage combine gets you that behavior if you need it. This also pointed up an issue with concurrency=multiprocessing, which is that the child processes automatically used parallel=True, but the parent process did not. Now concurrency=multiprocessing implies parallel=True.
* Prevent subprocess measurement from measuring coverage commands. #492Ned Batchelder2016-06-241-2/+0
|
* Clean up the previous commit that adds a test for #492Ned Batchelder2016-06-241-2/+5
|
* Cleanup test case #492Dan Riti2016-06-241-0/+7
|
* Add test case that demonstrates problem #492Dan Riti2016-06-241-3/+29
|
* Another use of try_execfile.py to adjustNed Batchelder2016-06-121-1/+1
|
* Move try_execfile.py to an unambiguous placeNed Batchelder2016-06-121-16/+24
| | | | | | | | | Where it was, we were counting on "tests" referring to coverage.py's own tests directory, but a -e install of a helper like unittest-mixins could provide a tests directory, which prevented the imports we needed for the tests. Moving try_execfile.py to a new subdirectory with a less-common name solves the problem.
* Use standard skipTest, which unittest-mixins will override.Ned Batchelder2016-06-121-7/+7
|
* Fix __main__.py showing up in help outputscottbelden2016-06-021-0/+9
|
* Add a test of the changes for #438.Ned Batchelder2015-11-141-0/+11
|
* Try a different strategy for setting and testing output encodingsNed Batchelder2015-10-311-2/+3
|
* Fix the non-ascii filename tests on windows (?)Ned Batchelder2015-10-311-25/+25
|
* Properly handle filenames with non-ASCII characters. #432Ned Batchelder2015-10-251-0/+76
|
* Combining now issues warnings on unreadable files, unconditionallyNed Batchelder2015-10-041-1/+1
|
* Combine can now ignore errors.Ned Batchelder2015-10-031-0/+36
|
* Clean up the debugging for the Travis issueNed Batchelder2015-09-181-3/+0
|
* derp3Ned Batchelder2015-09-171-2/+2
|
* derp2Ned Batchelder2015-09-171-1/+1
|
* derpNed Batchelder2015-09-171-1/+1
|
* Figure out why py3 is failing on TravisNed Batchelder2015-09-171-0/+3
|
* Use ntpath so Windows file manipulation can be tested the same everywhere.Ned Batchelder2015-08-151-6/+2
|
* Fix --append trying to make a new file. #392Ned Batchelder2015-08-031-0/+14
|
* Support directories on the 'coverage run' command line. #252Ned Batchelder2015-08-011-0/+27
|
* Erasing in parallel mode now deletes all the data files. #262Ned Batchelder2015-07-301-0/+17
|
* Another test of --append.Ned Batchelder2015-07-301-0/+24
|
* Refactor to reduce duplication.Ned Batchelder2015-07-301-31/+7
|
* Refactoring cmdline in prep for getting --append to work again.Ned Batchelder2015-07-301-1/+30
|
* Fix a few more occurrences of 'Coverage' to 'coverage.py'Ned Batchelder2015-07-271-3/+2
|
* New config option: run:note lets you annotate the data file.Ned Batchelder2015-07-261-1/+17
|
* Get rid of napoleon style docstrings, they don't format nicely.Ned Batchelder2015-07-261-7/+8
|
* Better spelling.Ned Batchelder2015-07-251-1/+1
|
* Add license mention to the top of all files. #313.Ned Batchelder2015-07-241-0/+3
|
* Change CoverageData.summary() to CoverageData.line_counts()Ned Batchelder2015-07-161-8/+8
|
* Clean up remaining pylint problems in test_process.pyNed Batchelder2015-06-281-6/+19
|
* Paperwork for last mergeNed Batchelder2015-06-281-0/+2
|
* Add missing import. Add assertions for 'No data to report.' in output.Ionel Cristian Maries2015-06-281-3/+6
|
* Make return codes consistent: 1 for no data and 2 for fail_under. Now the ↵Ionel Cristian Maries2015-06-281-6/+26
| | | | `report` command will properly report `No data to report` if there's no data.
* Add tests for xml and html commands.Ionel Cristian Maries2015-06-281-2/+13
|
* Make fail_under fail if there is no coverage data.Ionel Cristian Maries2015-06-281-0/+9
|
* addCleanup cleanupNed Batchelder2015-02-131-5/+1
|
* Remove (most) tearDown functions in favor of addCleanupNed Batchelder2015-02-091-2/+3
|