Skip to content
Snippets Groups Projects
Unverified Commit 555d1270 authored by Stu Young's avatar Stu Young Committed by GitHub
Browse files

Merge pull request #17206 from edx/estute/run-unittests-without-coverage

paver flag to run unittests without coverage
parents 75e371ec 078f3e6b
Branches
Tags
No related merge requests found
......@@ -53,6 +53,10 @@ __test__ = False # do not collect
"--disable_capture", action="store_true", dest="disable_capture",
help="Disable capturing of stdout/stderr"
),
make_option(
"--disable-coverage", action="store_false", dest="with_coverage",
help="Run the unit tests directly through pytest, NOT coverage"
),
make_option(
'--disable-migrations',
action='store_true',
......@@ -140,6 +144,10 @@ def test_system(options, passthrough_options):
"--disable_capture", action="store_true", dest="disable_capture",
help="Disable capturing of stdout/stderr"
),
make_option(
"--disable-coverage", action="store_false", dest="with_coverage",
help="Run the unit tests directly through pytest, NOT coverage"
),
], share_with=['pavelib.utils.test.utils.clean_reports_dir'])
@PassthroughTask
@timed
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment