Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Omit and include are now filename patterns rather than prefixes. BACKWARD ↵ | Ned Batchelder | 2010-05-23 | 1 | -50/+50 |
| | | | | INCOMPATIBLE change. | ||||
* | Format the code to pylint's liking, and fix up the docstrings for omit and ↵ | Ned Batchelder | 2010-05-15 | 1 | -2/+6 |
| | | | | include. | ||||
* | Hook up omit and include to the run command. Test the new cmdline behavior ↵ | Ned Batchelder | 2010-05-15 | 1 | -19/+60 |
| | | | | and run behavior. | ||||
* | Change 'requires' to 'include'. | Ned Batchelder | 2010-05-15 | 1 | -29/+29 |
| | |||||
* | fix a couple of bugs in control.py such that handling of omit_prefixes ↵ | wonwinmcbrootles@Wonwin-McBrootles-Computer.local | 2010-05-09 | 1 | -29/+29 |
| | | | | | | | | | | and/or require_prefixes was wrong update cmdline tests so they don't go red due to an unexpected constructor argument 'require_prefixes' note that there is not a real test of the "--require" cmdline argument -- I just added "require_prefixes=None" to the tests, so there is not test which tests what happens when someone passes --require= to the summary commands, much less to the run command. --HG-- extra : transplant_source : %F7%B3%26E%27Va%A2W4%9EX%9F%02oV%3C%A2%27%E1 | ||||
* | Remove unittest main invocations. | Ned Batchelder | 2010-03-15 | 1 | -5/+1 |
| | |||||
* | If the user's code calls sys.exit(), honor the request and exit with that ↵ | Ned Batchelder | 2010-02-28 | 1 | -0/+59 |
| | | | | status. Fixes issue #50. | ||||
* | XML output file is configurable in .rc file. | Ned Batchelder | 2010-01-09 | 1 | -1/+1 |
| | | | | | --HG-- rename : test/farm/html/run_a_xml.py => test/farm/html/run_a_xml_1.py | ||||
* | Parallel mode can be set from the .coveragerc file. | Ned Batchelder | 2010-01-03 | 1 | -11/+21 |
| | |||||
* | Add tests for 'coverage debug data' | Ned Batchelder | 2009-12-19 | 1 | -0/+52 |
| | |||||
* | A --rcfile argument to specify the config file. | Ned Batchelder | 2009-12-06 | 1 | -8/+16 |
| | |||||
* | Yikes, I never had a test for --branch. | Ned Batchelder | 2009-12-06 | 1 | -0/+8 |
| | |||||
* | Massive eol whitespace clean-up. | Ned Batchelder | 2009-12-02 | 1 | -15/+15 |
| | |||||
* | A --version option for the command line. | Ned Batchelder | 2009-12-01 | 1 | -0/+4 |
| | |||||
* | When reporting, don't fall over if there's no data to report on. Fixes issue ↵ | Ned Batchelder | 2009-11-26 | 1 | -12/+1 |
| | | | | #37. | ||||
* | Broke a test when I renamed the debug output line. | Ned Batchelder | 2009-11-21 | 1 | -1/+1 |
| | |||||
* | Dur! This is a better way to indicate how the tests should run. | Ned Batchelder | 2009-11-18 | 1 | -3/+1 |
| | |||||
* | Avoid some unneeded tempdir creation in tests. | Ned Batchelder | 2009-11-15 | 1 | -0/+4 |
| | |||||
* | Basic plumbing for a --branch option. | Ned Batchelder | 2009-10-07 | 1 | -7/+7 |
| | |||||
* | Help should focus on the new command syntax but also have a way to get help ↵ | Ned Batchelder | 2009-10-04 | 1 | -2/+2 |
| | | | | on the old. | ||||
* | Added a 'coverage debug' command to get internal information for diagnosing ↵ | Ned Batchelder | 2009-09-27 | 1 | -5/+20 |
| | | | | problems. Also, all commands should at least take -h. | ||||
* | XML command writes to coverage.xml, and takes a -o argument to write it ↵ | Ned Batchelder | 2009-09-25 | 1 | -4/+39 |
| | | | | somewhere else. | ||||
* | Move common stuff to a common place. | Ned Batchelder | 2009-09-25 | 1 | -33/+25 |
| | |||||
* | Don't use -o for 'omit' in the new command syntax: it should mean output. | Ned Batchelder | 2009-09-24 | 1 | -6/+6 |
| | |||||
* | The best way to get py3k support: same source runs on both, with some ↵ | Ned Batchelder | 2009-09-22 | 1 | -1/+3 |
| | | | | contortions. | ||||
* | A nicer way to write help text. | Ned Batchelder | 2009-09-13 | 1 | -1/+6 |
| | |||||
* | assertTrue isn't available in earlier Pythons? | Ned Batchelder | 2009-09-13 | 1 | -9/+9 |
| | |||||
* | More tests: really use the help function that writes to stdout. | Ned Batchelder | 2009-09-13 | 1 | -5/+38 |
| | |||||
* | All commands are now available as new-style commands. | Ned Batchelder | 2009-09-13 | 1 | -0/+33 |
| | |||||
* | Proper help handling for the new command-line syntax. | Ned Batchelder | 2009-09-12 | 1 | -6/+12 |
| | |||||
* | First new-style command: run | Ned Batchelder | 2009-09-12 | 1 | -116/+103 |
| | |||||
* | Major changes to introduce new command line syntax. | Ned Batchelder | 2009-09-12 | 1 | -14/+44 |
| | |||||
* | More command line cleanup. | Ned Batchelder | 2009-09-12 | 1 | -1/+1 |
| | |||||
* | Switch from getopt to optparse. Thanks, Ben Finney! | Ned Batchelder | 2009-09-10 | 1 | -4/+3 |
| | |||||
* | Fix some lint warnings. | Ned Batchelder | 2009-09-09 | 1 | -1/+6 |
| | |||||
* | Complete the mock tests for the command line parser. Maybe too complete... | Ned Batchelder | 2009-09-09 | 1 | -9/+203 |
| | |||||
* | Re-work some existing command_line tests to include the return status also. | Ned Batchelder | 2009-09-09 | 1 | -39/+59 |
| | |||||
* | Start using Mock to test the command-line code. | Ned Batchelder | 2009-09-09 | 1 | -4/+47 |
| | |||||
* | More docstrings | Ned Batchelder | 2009-05-09 | 1 | -0/+2 |
| | |||||
* | The name of the project is Coverage, not coverage.py. | Ned Batchelder | 2009-04-30 | 1 | -1/+1 |
| | |||||
* | Reduce line lengths. | Ned Batchelder | 2009-04-28 | 1 | -13/+37 |
| | |||||
* | Finish up the cmdline details for -b | Ned Batchelder | 2009-04-28 | 1 | -0/+2 |
| | |||||
* | Split out the cmdline.py tests. | Ned Batchelder | 2009-04-28 | 1 | -0/+41 |