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 | a6bdf57239518ad149de626ec7c62c47393a85b3 (patch) | |
tree | 6ecc896f5c7ebe2bcfceae0d9d4524c3b694cfe6 /coverage/runners/pytestplugin.py | |
parent | 9be47b1a910715e6a0803ac8b6c03aa8fe8f29d7 (diff) | |
download | python-coveragepy-git-a6bdf57239518ad149de626ec7c62c47393a85b3.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 af825aa9..0032b13b 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): |