From 7a795d107409818f9d6be35e241d0e3d4795e335 Mon Sep 17 00:00:00 2001 From: Mourits de Beer <31511766+ff137@users.noreply.github.com> Date: Thu, 13 Feb 2025 19:17:40 +0200 Subject: [PATCH] :zap: Remove `--cov` from pytest.ini_options (#3522) Signed-off-by: ff137 Co-authored-by: jamshale <31809382+jamshale@users.noreply.github.com> --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d5772778c4..1c0419555e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -130,7 +130,7 @@ line-length = 90 testpaths = "acapy_agent" addopts = """ --quiet --junitxml=./test-reports/junit.xml - --cov-config .coveragerc --cov=acapy_agent --cov-report term --cov-report xml + --cov-config .coveragerc --cov-report term --cov-report xml --ruff """ markers = [ @@ -139,7 +139,7 @@ markers = [ "indy: Tests specifically relating to Hyperledger Indy SDK support", "indy_credx: Tests specifically relating to Indy-Credx support", "indy_vdr: Tests specifically relating to Indy-VDR support", - "ursa_bbs_signatures: Tests specificaly relating to BBS Signatures support", + "ursa_bbs_signatures: Tests specifically relating to BBS Signatures support", "postgres: Tests relating to the postgres storage plugin for Indy", ] junit_family = "xunit1"