diff options
author | Sharlatan Hellseher <[email protected]> | 2024-07-09 09:38:50 +0100 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2024-07-09 09:38:50 +0100 |
commit | 6b496c071537e399710ff5ec0284f74a44b66c71 (patch) | |
tree | 690a8fbedc70d0ce47d42dd651593de0c8595106 /gnu/packages/python-xyz.scm | |
parent | dcd0ac74a6b57a9cf14f8eee57d4e0fa04832e20 (diff) |
gnu: python-duckdb: Disable parallel tests.
Running tests with "--numprocesses" more than 16 makes them shaky, see
<https://ci.guix.gnu.org/build/5070646/log/raw>.
* gnu/packages/python-xyz.scm (python-duckdb) [arguments]:
<#:test-flags>: Remove "--numprocesses" option.
[native-inputs]: Remove PYTHON-PYTEST-XDIST.
Change-Id: I34312cd0d031fe1c31172280e761cfe33762fc91
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fefd806c0e..93eeab8ea9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23342,8 +23342,7 @@ Mustache templating language renderer.") (arguments (list #:test-flags - #~(list "--numprocesses" "auto" - "--ignore=tests/slow/test_h2oai_arrow.py" + #~(list "--ignore=tests/slow/test_h2oai_arrow.py" ;; Do not relay on mypy. "--ignore=tests/stubs/test_stubs.py" "-k" (string-append @@ -23384,7 +23383,6 @@ Mustache templating language renderer.") python-pyarrow python-pytest python-pytest-runner - python-pytest-xdist python-setuptools-scm)) (home-page "https://www.duckdb.org") (synopsis "DuckDB embedded database") |