Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Put try_execfile tests in their own class, and make them Jython-ok | Ned Batchelder | 2017-01-14 | 1 | -124/+127 | |
| | ||||||
* | More Jython test fixes/skips | Ned Batchelder | 2017-01-14 | 1 | -0/+15 | |
| | ||||||
* | Mysterious case of 'coverage2' being available in py35, not sure why | Ned Batchelder | 2017-01-03 | 1 | -0/+1 | |
| | ||||||
* | Make sure the excepthook is measured. | Ned Batchelder | 2016-12-26 | 1 | -0/+9 | |
| | ||||||
* | Don't stress over PyPy differences, and fix file names | Ned Batchelder | 2016-12-26 | 1 | -9/+13 | |
| | ||||||
* | Make excepthook execution more accurate. Pypy tests failing | Ned Batchelder | 2016-12-26 | 1 | -2/+5 | |
| | ||||||
* | Put the excepthook tests in their own class for convenience | Ned Batchelder | 2016-12-26 | 1 | -1/+4 | |
| | ||||||
* | Merged in andrewhoos/coverage.py (pull request #93) | Ned Batchelder | 2016-12-26 | 1 | -0/+60 | |
|\ | | | | | | | Explicitely call sys.excepthook | |||||
| * | Update change with tests and fixes for tests | Andrew Hoos | 2016-11-30 | 1 | -0/+60 | |
| | | ||||||
* | | Add a "make smoke" target for a quick test run. | Ned Batchelder | 2016-12-18 | 1 | -0/+3 | |
| | | ||||||
* | | Oh 2.6, you get me every time | Ned Batchelder | 2016-12-06 | 1 | -1/+1 | |
| | | ||||||
* | | A better way to find the pth directory | Ned Batchelder | 2016-12-06 | 1 | -14/+18 | |
| | | ||||||
* | | Remove the filelock experiment | Ned Batchelder | 2016-12-06 | 1 | -8/+4 | |
| | | ||||||
* | | Need to clean up in the right order | Ned Batchelder | 2016-12-04 | 1 | -1/+2 | |
| | | ||||||
* | | Quick hack to try avoiding stepping on each others' pth files | Ned Batchelder | 2016-12-04 | 1 | -12/+24 | |
|/ | ||||||
* | Fix two problems with xdist'ed tests | Ned Batchelder | 2016-11-26 | 1 | -1/+2 | |
| | ||||||
* | Enable pytest warnings, and fix/silence a few | Ned Batchelder | 2016-11-26 | 1 | -2/+2 | |
| | ||||||
* | Python 3.3 fails on the LANG=C test. Skip it. | Ned Batchelder | 2016-11-17 | 1 | -0/+3 | |
| | ||||||
* | Run test in a 2.6-compatible way | Ned Batchelder | 2016-11-17 | 1 | -1/+1 | |
| | ||||||
* | Don't collapse in an ascii-only file-world. #533 | Ned Batchelder | 2016-11-17 | 1 | -0/+17 | |
| | ||||||
* | Ensure random suffixes are different after forking | Ned Batchelder | 2016-09-22 | 1 | -5/+10 | |
| | ||||||
* | Use latest pylint | Ned Batchelder | 2016-08-07 | 1 | -1/+1 | |
| | ||||||
* | Combining twice shouldn't lose data. #412, #516 | Ned Batchelder | 2016-08-07 | 1 | -1/+11 | |
| | ||||||
* | Add a test that .pth measurement doesn't include existing data | Ned Batchelder | 2016-07-29 | 1 | -0/+7 | |
| | ||||||
* | Cover a few more lines in cmdline.py | Ned Batchelder | 2016-07-10 | 1 | -0/+38 | |
| | ||||||
* | Update pylint to 1.5.6 | Ned Batchelder | 2016-06-25 | 1 | -1/+3 | |
| | ||||||
* | Fixes two overlookeds self.skip calls | Ned Batchelder | 2016-06-25 | 1 | -2/+2 | |
| | ||||||
* | Combine no longer appends by default | Ned Batchelder | 2016-06-25 | 1 | -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. #492 | Ned Batchelder | 2016-06-24 | 1 | -2/+0 | |
| | ||||||
* | Clean up the previous commit that adds a test for #492 | Ned Batchelder | 2016-06-24 | 1 | -2/+5 | |
| | ||||||
* | Cleanup test case #492 | Dan Riti | 2016-06-24 | 1 | -0/+7 | |
| | ||||||
* | Add test case that demonstrates problem #492 | Dan Riti | 2016-06-24 | 1 | -3/+29 | |
| | ||||||
* | Another use of try_execfile.py to adjust | Ned Batchelder | 2016-06-12 | 1 | -1/+1 | |
| | ||||||
* | Move try_execfile.py to an unambiguous place | Ned Batchelder | 2016-06-12 | 1 | -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. --HG-- rename : tests/try_execfile.py => tests/modules/process_test/try_execfile.py | |||||
* | Use standard skipTest, which unittest-mixins will override. | Ned Batchelder | 2016-06-12 | 1 | -7/+7 | |
| | ||||||
* | Fix __main__.py showing up in help output | scottbelden | 2016-06-02 | 1 | -0/+9 | |
| | ||||||
* | Add a test of the changes for #438. | Ned Batchelder | 2015-11-14 | 1 | -0/+11 | |
| | ||||||
* | Try a different strategy for setting and testing output encodings | Ned Batchelder | 2015-10-31 | 1 | -2/+3 | |
| | ||||||
* | Fix the non-ascii filename tests on windows (?) | Ned Batchelder | 2015-10-31 | 1 | -25/+25 | |
| | ||||||
* | Properly handle filenames with non-ASCII characters. #432 | Ned Batchelder | 2015-10-25 | 1 | -0/+76 | |
| | ||||||
* | Combining now issues warnings on unreadable files, unconditionally | Ned Batchelder | 2015-10-04 | 1 | -1/+1 | |
| | ||||||
* | Combine can now ignore errors. | Ned Batchelder | 2015-10-03 | 1 | -0/+36 | |
| | ||||||
* | Clean up the debugging for the Travis issue | Ned Batchelder | 2015-09-18 | 1 | -3/+0 | |
| | ||||||
* | derp3 | Ned Batchelder | 2015-09-17 | 1 | -2/+2 | |
| | ||||||
* | derp2 | Ned Batchelder | 2015-09-17 | 1 | -1/+1 | |
| | ||||||
* | derp | Ned Batchelder | 2015-09-17 | 1 | -1/+1 | |
| | ||||||
* | Figure out why py3 is failing on Travis | Ned Batchelder | 2015-09-17 | 1 | -0/+3 | |
| | ||||||
* | Use ntpath so Windows file manipulation can be tested the same everywhere. | Ned Batchelder | 2015-08-15 | 1 | -6/+2 | |
| | ||||||
* | Fix --append trying to make a new file. #392 | Ned Batchelder | 2015-08-03 | 1 | -0/+14 | |
| | ||||||
* | Support directories on the 'coverage run' command line. #252 | Ned Batchelder | 2015-08-01 | 1 | -0/+27 | |
| |