diff options
author | Leo Famulari <leo@famulari.name> | 2016-10-30 18:32:30 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-10-31 17:02:38 -0400 |
commit | 65a3bdf7eb6884f440ac2a0db0e937b595d09406 (patch) | |
tree | 37530dd2d4b0f5136985628934e398a3f063267f | |
parent | 0bc6ef2a87eb6501fb5925a1569a7c17a072f843 (diff) | |
download | guix-65a3bdf7eb6884f440ac2a0db0e937b595d09406.tar guix-65a3bdf7eb6884f440ac2a0db0e937b595d09406.tar.gz |
gnu: borg: Run the tests with python-pytest-2.9.2.
* gnu/packages/backup.scm (borg)[native-inputs]: Use python-pytest-2.9.2.
-rw-r--r-- | gnu/packages/backup.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 8ec2ee45df..203ff4c9dc 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -470,7 +470,9 @@ detection, and lossless compression.") (native-inputs `(("python-cython" ,python-cython) ("python-setuptools-scm" ,python-setuptools-scm) - ("python-pytest" ,python-pytest) + ;; Borg 1.0.8's test suite uses 'tmpdir_factory', which was introduced in + ;; pytest 2.8. + ("python-pytest" ,python-pytest-2.9.2) ;; For generating the documentation. ("python-sphinx" ,python-sphinx) ("python-sphinx-rtd-theme" ,python-sphinx-rtd-theme))) |