From a24a8f3eb785849d25338d6a9cd04f7bf1415571 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sun, 6 Oct 2024 00:20:23 +0300 Subject: [PATCH] Update Makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6526eb1..f53f4c5 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,8 @@ remove: pip3 uninstall python3_anticaptcha -y tests: install - coverage run --rcfile=.coveragerc -m pytest --verbose --showlocals --pastebin=all tests --disable-warnings && \ + coverage run --rcfile=.coveragerc -m pytest --verbose --showlocals --pastebin=all --disable-warnings \ + tests/ && \ coverage report --precision=3 --sort=cover --skip-empty --show-missing && \ coverage html --precision=3 --skip-empty -d coverage/html/ && \ coverage xml -o coverage/coverage.xml