We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b8e8ae commit 227ce51Copy full SHA for 227ce51
cre.py
@@ -22,7 +22,7 @@
22
"--cover/--no-cover", default=False, help="Run tests under code coverage."
23
) # type: ignore
24
@click.argument("test_names", nargs=-1) # type: ignore
25
-def test(cover: coverage.Coverage, test_names: List[str]) -> None:
+def test(cover: bool, test_names: List[str]) -> None:
26
COV = None
27
if cover or os.environ.get("FLASK_COVERAGE"):
28
COV = coverage.coverage(
0 commit comments