diff options
author | Hilton Chain <[email protected]> | 2025-01-30 22:59:21 +0800 |
---|---|---|
committer | Hilton Chain <[email protected]> | 2025-01-30 23:02:47 +0800 |
commit | c788962baeeb6bf021b30c9ad774d472f592fdb5 (patch) | |
tree | e02cac383c0ab12aa04505887b814c510574e8e5 /gnu | |
parent | 8f8aa5cf58feb94ef088a8f813a18483436acd7e (diff) |
gnu: conda: Add missing dependency.
* gnu/packages/package-management.scm (conda)[arguments]<#:test-flags>:
Disable more tests failing on store path difference.
[native-inputs]: Add python-pytest-cov.
Change-Id: I836b0c3f493c5975a7923be422309442bc9248d4
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/package-management.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index ff05d15e73..2beb442451 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1214,7 +1214,10 @@ extracting, creating, and converting between formats.") ;; Not sure if this is really wrong. This fails because ;; /gnu/store/...conda-22.9.0/bin/python ;; is not /gnu/store/...python-wrapper-3.9.9/bin/python - "test_make_entry_point") + "test_make_entry_point" + "test_get_python_info" "test__get_python_info" + "test_install_conda_csh" + "test_install_conda_fish") " and not "))) #:phases #~(modify-phases %standard-phases @@ -1292,6 +1295,7 @@ extracting, creating, and converting between formats.") (native-inputs (list python-coverage python-flaky + python-pytest-cov python-pytest-timeout python-pytest-xprocess python-wheel)) |