[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#57092] [PATCH v2 2/2] gnu: python-tox: Add native-inputs and enable
From: |
Nicolas Graves |
Subject: |
[bug#57092] [PATCH v2 2/2] gnu: python-tox: Add native-inputs and enable tests. |
Date: |
Thu, 11 Aug 2022 07:48:32 +0200 |
* gnu/packages/python-check.scm (python-tox): Add native-inputs and enable
tests.
---
gnu/packages/python-check.scm | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 5d6cf49c50..2a54fabd99 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -2437,10 +2437,6 @@ (define-public python-tox
(base32
"0nk0nyzhzamcrvn0qqzzy54isxxqwdi28swml7a2ym78c3f9sqpb"))))
(build-system python-build-system)
- (arguments
- ;; FIXME: Tests require pytest-timeout, which itself requires
- ;; pytest>=2.8.0 for installation.
- '(#:tests? #f))
(propagated-inputs
(list python-filelock
python-packaging
@@ -2450,9 +2446,11 @@ (define-public python-tox
python-toml
python-virtualenv))
(native-inputs
- (list ; FIXME: Missing: ("python-pytest-timeout" ,python-pytest-timeout)
- python-pytest ; >= 2.3.5
- python-setuptools-scm))
+ (list python-flaky
+ python-pathlib2
+ python-pytest-timeout
+ python-pytest
+ python-setuptools-scm))
(home-page "https://tox.readthedocs.io")
(synopsis "Virtualenv-based automation of test activities")
(description "Tox is a generic virtualenv management and test command line
--
2.37.1