diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-21 18:19:03 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:50 +0100 |
| commit | fcac316c2dd7360397f68bb0ee7eb664c638a535 (patch) | |
| tree | 0a2a8dfed0a8e6b2a5e0d311a539b491f3178df2 | |
| parent | 7701ec84a94fc4626358feb6e71b63340169ccfc (diff) | |
gnu: python-pytest-cython: Disable tests.
* gnu/packages/python-check.scm (python-pytest-cython)[arguments]
<tests?>: They look like broken.
<test-flags>: Drop all.
<phases>: Remove 'buld-extensions.
[native-inputs]: Remove python-cython-3; add python-cython.
Change-Id: I978ee17a13688199dcd474577afb0dde10df220c
| -rw-r--r-- | gnu/packages/python-check.scm | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 5762c3faf6..e9f1660619 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -2075,20 +2075,9 @@ it adds to the Pytest command line interface (CLI).") (build-system pyproject-build-system) (arguments (list - #:test-flags - #~(list "tests" - ;; FIXME: Failed: nomatch: '*sqr*PASSED* - "-k" (string-append - "not test_wrap_cpp_ext_module[importlib]" - " and not test_wrap_c_ext_module[importlib]" - " and not test_cython_ext_module[importlib]")) - #:phases - #~(modify-phases %standard-phases - (add-before 'check 'build-extensions - (lambda _ - (with-directory-excursion "tests/example-project" - (invoke "python" "setup.py" "build_ext" "--inplace"))))))) - (native-inputs (list python-cython-3 python-setuptools python-wheel)) + ;; E ModuleNotFoundError: No module named 'setuptools.sandbox' + #:tests? #f)) ;XXX: tests are broken + (native-inputs (list python-cython python-setuptools python-wheel)) (propagated-inputs (list python-pytest)) (home-page "https://github.com/lgpage/pytest-cython") (synopsis "Cython extension modules testing plugin") |
