diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-06-01 07:55:11 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-06-01 07:55:11 -0400 |
commit | edf151c4917a39fdbb1362af1a440aa376eacc76 (patch) | |
tree | 04706c433b85bbc9d098c72e0d2c892c18fed088 /coverage/runners/pytestplugin.py | |
parent | 316a9d5a98f072dd14e25601467a49ba8397342a (diff) | |
download | python-coveragepy-edf151c4917a39fdbb1362af1a440aa376eacc76.tar.gz |
Add some docstrings
Diffstat (limited to 'coverage/runners/pytestplugin.py')
-rw-r--r-- | coverage/runners/pytestplugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/runners/pytestplugin.py b/coverage/runners/pytestplugin.py index af825aa..0032b13 100644 --- a/coverage/runners/pytestplugin.py +++ b/coverage/runners/pytestplugin.py @@ -1,11 +1,11 @@ """py.test plugin hooks""" -from coverage.runners.plugin import CoverageTestWrapper, options +from coverage.runners.plugin import CoverageTestWrapper, OPTIONS def pytest_addoption(parser): """Get all the options from the coverage.runner and import them.""" group = parser.getgroup('Coverage options') - for opt in options: + for opt in OPTIONS: group._addoption_instance(opt) def pytest_configure(config): |