1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Skip pytest coverage.
Pytest is missing a couple of elements to produce coverage metrics.
As a distributor, these artifacts won't be of much use, so let's skip
them entirely.
Author: Étienne Mollier <emollier@debian.org>
Forwarded: not-needed
Last-Update: 2023-10-09
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- pyxnat.orig/setup.cfg
+++ pyxnat/setup.cfg
@@ -11,7 +11,4 @@
addopts =
-v
--tb=short
- --cov=pyxnat
- --cov-report=term-missing:skip-covered
- --cov-report=xml
norecursedirs = xnat-docker-compose
|