summaryrefslogtreecommitdiff
path: root/test/test_cmdline.py
Commit message (Expand)AuthorAgeFilesLines
* Move the test directory to tests to avoid conflicts with the stdlib test pack...Ned Batchelder2013-02-021-702/+0
* Get rid of import craziness in the tests.Ned Batchelder2012-12-301-3/+2
* A bunch of tweaks to improve coverageNed Batchelder2012-12-011-0/+8
* Now the title of the HTML report can be set.Ned Batchelder2012-11-091-7/+15
* Ugh. Setting the xml output file in the .coveragerc file simply didn't work....Ned Batchelder2012-11-071-6/+6
* The old way of getting help text was just weird.Ned Batchelder2012-11-041-0/+6
* A different (better) way to avoid warnings when no code has been run.Ned Batchelder2011-02-121-13/+13
* Don't warn about not collecting data if we never ran any code in the first pl...Ned Batchelder2011-02-071-13/+13
* Add tests and doc for Brandon's -m flag.Ned Batchelder2011-02-061-1/+29
* Pylint 0.23.0 'deprecated' disable-msg.Ned Batchelder2011-02-011-1/+1
* Wrap a long line.Ned Batchelder2010-07-251-2/+3
* All tests now use underscore names instead of some having camelCase names.Ned Batchelder2010-06-181-32/+32
* Add a test for --source, lots more needed.Ned Batchelder2010-06-181-0/+11
* The 'source' option is a list of directories or packages to limit coverage's ...Ned Batchelder2010-06-131-20/+20
* Omit and include are now filename patterns rather than prefixes. BACKWARD IN...Ned Batchelder2010-05-231-50/+50
* Format the code to pylint's liking, and fix up the docstrings for omit and in...Ned Batchelder2010-05-151-2/+6
* Hook up omit and include to the run command. Test the new cmdline behavior a...Ned Batchelder2010-05-151-19/+60
* Change 'requires' to 'include'.Ned Batchelder2010-05-151-29/+29
* fix a couple of bugs in control.py such that handling of omit_prefixes and/or...wonwinmcbrootles@Wonwin-McBrootles-Computer.local2010-05-091-29/+29
* Remove unittest main invocations.Ned Batchelder2010-03-151-5/+1
* If the user's code calls sys.exit(), honor the request and exit with that sta...Ned Batchelder2010-02-281-0/+59
* XML output file is configurable in .rc file.Ned Batchelder2010-01-091-1/+1
* Parallel mode can be set from the .coveragerc file.Ned Batchelder2010-01-031-11/+21
* Add tests for 'coverage debug data'Ned Batchelder2009-12-191-0/+52
* A --rcfile argument to specify the config file.Ned Batchelder2009-12-061-8/+16
* Yikes, I never had a test for --branch.Ned Batchelder2009-12-061-0/+8
* Massive eol whitespace clean-up.Ned Batchelder2009-12-021-15/+15
* A --version option for the command line.Ned Batchelder2009-12-011-0/+4
* When reporting, don't fall over if there's no data to report on. Fixes issue ...Ned Batchelder2009-11-261-12/+1
* Broke a test when I renamed the debug output line.Ned Batchelder2009-11-211-1/+1
* Dur! This is a better way to indicate how the tests should run.Ned Batchelder2009-11-181-3/+1
* Avoid some unneeded tempdir creation in tests.Ned Batchelder2009-11-151-0/+4
* Basic plumbing for a --branch option.Ned Batchelder2009-10-071-7/+7
* Help should focus on the new command syntax but also have a way to get help o...Ned Batchelder2009-10-041-2/+2
* Added a 'coverage debug' command to get internal information for diagnosing p...Ned Batchelder2009-09-271-5/+20
* XML command writes to coverage.xml, and takes a -o argument to write it somew...Ned Batchelder2009-09-251-4/+39
* Move common stuff to a common place.Ned Batchelder2009-09-251-33/+25
* Don't use -o for 'omit' in the new command syntax: it should mean output.Ned Batchelder2009-09-241-6/+6
* The best way to get py3k support: same source runs on both, with some contort...Ned Batchelder2009-09-221-1/+3
* A nicer way to write help text.Ned Batchelder2009-09-131-1/+6
* assertTrue isn't available in earlier Pythons?Ned Batchelder2009-09-131-9/+9
* More tests: really use the help function that writes to stdout.Ned Batchelder2009-09-131-5/+38
* All commands are now available as new-style commands.Ned Batchelder2009-09-131-0/+33
* Proper help handling for the new command-line syntax.Ned Batchelder2009-09-121-6/+12
* First new-style command: runNed Batchelder2009-09-121-116/+103
* Major changes to introduce new command line syntax.Ned Batchelder2009-09-121-14/+44
* More command line cleanup.Ned Batchelder2009-09-121-1/+1
* Switch from getopt to optparse. Thanks, Ben Finney!Ned Batchelder2009-09-101-4/+3
* Fix some lint warnings.Ned Batchelder2009-09-091-1/+6
* Complete the mock tests for the command line parser. Maybe too complete...Ned Batchelder2009-09-091-9/+203