Blame SOURCES/0001-Fedora-tox-adjustments.patch

959e43
From f28a681300f2d1913324ad28681c706069b67689 Mon Sep 17 00:00:00 2001
959e43
From: Carl George <carl@george.computer>
959e43
Date: Fri, 1 Apr 2022 15:59:28 -0500
959e43
Subject: [PATCH] Fedora tox adjustments
959e43
959e43
- Remove coverage flags from pytest command
959e43
- Remove pytest-cov and python-xdist deps
959e43
- Remove pytest upper bound
959e43
---
959e43
 tox.ini | 6 ++----
959e43
 1 file changed, 2 insertions(+), 4 deletions(-)
959e43
959e43
diff --git a/tox.ini b/tox.ini
959e43
index e401b5b..110b089 100644
959e43
--- a/tox.ini
959e43
+++ b/tox.ini
959e43
@@ -14,12 +14,10 @@ python =
959e43
 passenv =
959e43
     GITHUB_*
959e43
 deps =
959e43
-    pytest>=6.0.1,<7
959e43
-    pytest-cov>=2.10.1,<3
959e43
-    pytest-xdist>=2.0.0,<3
959e43
+    pytest>=6.0.1
959e43
     hypothesis>=5.5,<7
959e43
 commands =
959e43
-    pytest --cov-report=xml  --cov-report=term --cov=h2 {posargs}
959e43
+    pytest {posargs}
959e43
 
959e43
 [testenv:pypy3]
959e43
 # temporarily disable coverage testing on PyPy due to performance problems
959e43
-- 
959e43
2.35.1
959e43