diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-08 23:28:11 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-08 23:35:47 +0100 |
commit | d0b42c90d8f94f9458d13ef1ed0a182b8089a41d (patch) | |
tree | 9f63fb8d9c00d0ee81ab043be8ebdd5675a791d0 | |
parent | ce98c3436c57e7b366a3ec06c47a7e8919c990fb (diff) | |
download | guix-d0b42c90d8f94f9458d13ef1ed0a182b8089a41d.tar guix-d0b42c90d8f94f9458d13ef1ed0a182b8089a41d.tar.gz |
gnu: python-duckdb: Adjust indentation.
* gnu/packages/python-xyz.scm (python-duckdb): Adjust indentation.
Change-Id: I4f135df041f18188f7e035eed78a9199f2026b70
-rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7f485a7a97..fefd806c0e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23342,18 +23342,18 @@ Mustache templating language renderer.") (arguments (list #:test-flags - '(list "--numprocesses" "auto" - "--ignore=tests/slow/test_h2oai_arrow.py" - ;; Do not relay on mypy. - "--ignore=tests/stubs/test_stubs.py" - "-k" (string-append - ;; Don't install anything, thank you. - "not test_install_non_existent_extension" - ;; See <https://github.com/duckdb/duckdb/issues/11961>. - " and not test_fetchmany" - ;; See <https://github.com/duckdb/duckdb/issues/10702>. - " and not test_connection_interrupt" - " and not test_query_interruption")) + #~(list "--numprocesses" "auto" + "--ignore=tests/slow/test_h2oai_arrow.py" + ;; Do not relay on mypy. + "--ignore=tests/stubs/test_stubs.py" + "-k" (string-append + ;; Don't install anything, thank you. + "not test_install_non_existent_extension" + ;; See <https://github.com/duckdb/duckdb/issues/11961>. + " and not test_fetchmany" + ;; See <https://github.com/duckdb/duckdb/issues/10702>. + " and not test_connection_interrupt" + " and not test_query_interruption")) #:phases #~(modify-phases %standard-phases ;; Tests need this |