diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-18 07:51:41 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-18 07:51:41 -0400 |
commit | 6a9347a858b7c54997a3437b9c4688f279b832e1 (patch) | |
tree | 19c7b9b5851fd9de319fe670e67d58853725e9b9 /lab | |
parent | ba911dc01d1a033398f77a7ad69381b28a8e71b7 (diff) | |
download | python-coveragepy-git-6a9347a858b7c54997a3437b9c4688f279b832e1.tar.gz |
Command-line notes
Diffstat (limited to 'lab')
-rw-r--r-- | lab/cmd-opts.txt | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/lab/cmd-opts.txt b/lab/cmd-opts.txt new file mode 100644 index 00000000..5328ead4 --- /dev/null +++ b/lab/cmd-opts.txt @@ -0,0 +1,51 @@ +coverage -e -x foo.py +coverage run foo.py +coverage run --timid foo.py +coverage foo.py + + +commands: + + run -x + --timid bool + -p --parallel bool + -L --stdlib bool + --branch bool * + -a --append bool + + erase -e + + combine -c + + report -r + -m --missing bool + -i --ignore-errors bool + -o --omit list of string + + annotate -a + -d --output-directory string + -i --ignore-errors bool + -o --omit list of string + + html -b + -d --output-directory string + -i --ignore-errors bool + -o --omit list of string + --red * + --green * + --style * + + help + + byteprep * + + cobertura * + + + +Option scopes: + + - Cmd line + - coverage() + - ini file + - environment variable |