From d4cb0e7f7c2493cd7256b6ae1099351ae80b8299 Mon Sep 17 00:00:00 2001 From: Peter Bittner Date: Thu, 3 Oct 2024 20:26:41 +0200 Subject: [PATCH] Run BDD tests with coverage --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 524bf30..dff2692 100644 --- a/tox.ini +++ b/tox.ini @@ -38,10 +38,10 @@ deps = pytest commands = coverage run -m pytest {posargs} + coverage run -a tests/manage.py behave --tags=~@failing --tags=~@requires-live-http --simple {posargs} + coverage run -a tests/manage.py behave --tags=~@failing {posargs} coverage xml coverage report - python tests/manage.py behave --tags=~@failing --tags=~@requires-live-http --simple {posargs} - python tests/manage.py behave --tags=~@failing {posargs} [testenv:clean] description = Remove Python bytecode and other debris