mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-pytest-remotedata: Fix tests.
* gnu/packages/python-check.scm (python-pytest-remotedata): Fix tests. [arguments]<test-flags>: Ignore one more test, enable parallel tests. [native-inputs]: Add python-pytest-xdist. Change-Id: Ib5f58f415491ea4f5090af8bf47d31584edb037b
This commit is contained in:
parent
06cb215d9d
commit
7b7b0563e2
1 changed files with 10 additions and 4 deletions
|
@ -1012,12 +1012,18 @@ were inadvertently left open at the end of a unit test.")
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:test-flags #~(list "-k" (string-append
|
#:test-flags
|
||||||
"not test_default_behavior"
|
#~(list "--numprocesses" (number->string (parallel-job-count))
|
||||||
" and not test_strict_behavior"
|
"-k" (string-join
|
||||||
" and not test_strict_with_decorator"))))
|
;; Network access is required.
|
||||||
|
(list "not test_internet_access"
|
||||||
|
;; Failed with assertion error.
|
||||||
|
"test_default_behavior"
|
||||||
|
"test_strict_with_decorator")
|
||||||
|
" and not "))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest
|
(list python-pytest
|
||||||
|
python-pytest-xdist
|
||||||
python-setuptools
|
python-setuptools
|
||||||
python-setuptools-scm
|
python-setuptools-scm
|
||||||
python-wheel))
|
python-wheel))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue