From f2b7766d0e857eccc24a60771b41d167901e940d Mon Sep 17 00:00:00 2001 From: tushushu Date: Mon, 3 Jul 2023 16:10:31 +0800 Subject: [PATCH] fix pytest cov --- tests/cov.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/cov.py diff --git a/tests/cov.py b/tests/cov.py new file mode 100644 index 0000000..b0d5701 --- /dev/null +++ b/tests/cov.py @@ -0,0 +1,7 @@ +import pytest + +pytest.main([ + "-x", + "pytest --cov-report html --cov-report term-missing --cov=ulist", + "tests/"] +)