mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-exceptiongroup: Disable tests.
* gnu/packages/python-xyz.scm (python-exceptiongroup)[arguments]: Add #:tests?. [native-inputs]: Remove PYTHON-PYTEST.
This commit is contained in:
parent
6c03dce10d
commit
66b6d6a930
1 changed files with 2 additions and 1 deletions
|
@ -3088,6 +3088,7 @@ and is not compatible with JSON.")
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
#:tests? #f ;TODO: Circular dependency on pytest
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
;; XXX: PEP 517 manual build/install procedures copied from
|
;; XXX: PEP 517 manual build/install procedures copied from
|
||||||
|
@ -3107,7 +3108,7 @@ and is not compatible with JSON.")
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "pytest" "-vv" "tests")))))))
|
(invoke "pytest" "-vv" "tests")))))))
|
||||||
(native-inputs (list python-flit-scm python-pypa-build python-pytest))
|
(native-inputs (list python-flit-scm python-pypa-build))
|
||||||
(home-page "https://github.com/agronholm/exceptiongroup")
|
(home-page "https://github.com/agronholm/exceptiongroup")
|
||||||
(synopsis "PEP 654 backport from Python 3.11")
|
(synopsis "PEP 654 backport from Python 3.11")
|
||||||
(description "This is a backport of the @code{BaseExceptionGroup} and
|
(description "This is a backport of the @code{BaseExceptionGroup} and
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue