Blob Blame History Raw
From f28a681300f2d1913324ad28681c706069b67689 Mon Sep 17 00:00:00 2001
From: Carl George <carl@george.computer>
Date: Fri, 1 Apr 2022 15:59:28 -0500
Subject: [PATCH] Fedora tox adjustments

- Remove coverage flags from pytest command
- Remove pytest-cov and python-xdist deps
- Remove pytest upper bound
---
 tox.ini | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tox.ini b/tox.ini
index e401b5b..110b089 100644
--- a/tox.ini
+++ b/tox.ini
@@ -14,12 +14,10 @@ python =
 passenv =
     GITHUB_*
 deps =
-    pytest>=6.0.1,<7
-    pytest-cov>=2.10.1,<3
-    pytest-xdist>=2.0.0,<3
+    pytest>=6.0.1
     hypothesis>=5.5,<7
 commands =
-    pytest --cov-report=xml  --cov-report=term --cov=h2 {posargs}
+    pytest {posargs}
 
 [testenv:pypy3]
 # temporarily disable coverage testing on PyPy due to performance problems
-- 
2.35.1