diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-10-25 19:19:22 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-15 22:31:49 +0100 |
commit | 7ba07edfb1600b808987448bb64b43f875b40d32 (patch) | |
tree | cea7709017dc5e263b01739e772e178b40decf1d | |
parent | 8322749a1cf7ad2ae64dab6367bc8ca4d380f778 (diff) | |
download | guix-7ba07edfb1600b808987448bb64b43f875b40d32.tar guix-7ba07edfb1600b808987448bb64b43f875b40d32.tar.gz |
gnu: python-tox: Update FIXME comments.
* gnu/packages/python.scm(python-tox)[arguments]: Update FIXME
comment. [inputs]: Add FIXME comment.
-rw-r--r-- | gnu/packages/python.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 8d0d03a92e..e126708638 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8243,15 +8243,16 @@ Pytest but stripped of Pytest specific details.") "1vj73ar4rimq3fwy5r2z3jv4g9qbh8rmpmncsc00g0k310acqzxz")))) (build-system python-build-system) (arguments - ;; FIXME: Tests require a newer version of pytest, but upgrading our - ;; pytest breaks other packages. + ;; FIXME: Tests require pytest-timeout, which itself requires + ;; pytest>=2.8.0 for installation. '(#:tests? #f)) (propagated-inputs `(("python-pluggy" ,python-pluggy) ; >=0.3.0,<0.4.0 ("python-py" ,python-py) ("python-virtualenv" ,python-virtualenv))) (native-inputs - `(("python-pytest" ,python-pytest))) ; >= 2.3.5 + `(; FIXME: Missing: ("python-pytest-timeout" ,python-pytest-timeout) + ("python-pytest" ,python-pytest))) ; >= 2.3.5 (home-page "http://tox.testrun.org/") (synopsis "Virtualenv-based automation of test activities") (description "Tox is a generic virtualenv management and test command line |