diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-10 22:59:21 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:11 +0100 |
| commit | ea460c1aead42c5556c42b382d75d7c43b4bbe49 (patch) | |
| tree | 60c66adfefef597adc615974215388d4cd6b02f3 | |
| parent | 262a7d9cdbc0e5de08133824c50bfc9bb6d17ced (diff) | |
gnu: python-pytest-relaxed: Fix tests.
* gnu/packages/check.scm (python-pytest-relaxed):
[arguments] <test-flags>: Skip one shaky test.
[native-inputs]: Remove python-pytest and python-wheel; add
python-pytest-bootstrap.
Change-Id: I56037bf27984dd14a7e3504aa8996e5d8748c8d4
| -rw-r--r-- | gnu/packages/check.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 26ba36a133..bcad11ba61 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1759,10 +1759,12 @@ supports coverage of subprocesses.") (sha256 (base32 "0j37gkgcag4rpv9g5q2n80425cs1alwx8fwncx3mv7sdgqgdgqnz")))) (build-system pyproject-build-system) + (arguments + ;; Shaky tests with Pytest@8 + (list #:test-flags #~(list "-k" "not test_skips_pytest_fixture"))) (native-inputs - (list python-pytest - python-setuptools - python-wheel)) + (list python-pytest-bootstrap + python-setuptools)) (propagated-inputs (list python-decorator)) (home-page "https://github.com/bitprophet/pytest-relaxed") |
