diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-03-01 01:54:58 +0100 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-03-07 03:09:48 +0100 |
| commit | f674270c07378721fc12600e380bab4c3bf57d4c (patch) | |
| tree | 63ff46a01d7e8a515bb6c0f1d76d21ab49999174 /gnu/packages/python-science.scm | |
| parent | a2dbf339f1a35c21da01d0ad2e724ed5b345ad20 (diff) | |
gnu: python-cvxpy: Fix intermittent build failure.
* gnu/packages/python-science.scm (python-cvxpy)[arguments]<#:phases>{set-ci-environment}:
New phase.
Change-Id: I4e76b5e88c03f4b2c6915181231b700512d6f37a
Diffstat (limited to 'gnu/packages/python-science.scm')
| -rw-r--r-- | gnu/packages/python-science.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index b48896ef490..aef89267989 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -810,7 +810,14 @@ it can be used for displaying many qualitatively different samples.") ;; cvxpy.error.SolverError: Solver 'CVXOPT' ;; failed. Try another solver, or solve with ;; verbose=True for more information. - "TestOpRelConeQuad::test_oprelcone_2"))))) + "TestOpRelConeQuad::test_oprelcone_2"))) + #:phases + #~(modify-phases %standard-phases + (add-before 'check 'set-ci-environment + (lambda _ + ;; Activate hypothesis CI profile to suppress + ;; HealthCheck.too_slow which fails on slow build machines. + (setenv "CI" "1")))))) (native-inputs (list pybind11-2 python-pytest |
