[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/49: gnu: python-distributed: Speed up tests.
From: |
guix-commits |
Subject: |
12/49: gnu: python-distributed: Speed up tests. |
Date: |
Fri, 29 Mar 2024 11:15:21 -0400 (EDT) |
sharlatan pushed a commit to branch master
in repository guix.
commit 249f0a9c9fa5e663150b58be9846e6ca49b59214
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Mon Mar 11 14:13:04 2024 +0000
gnu: python-distributed: Speed up tests.
* gnu/packages/python-science.scm (python-distributed) [arguments]
<#:test-flags>: Add option to run tests in parallel. Disable 3 more
flaky tests.
[native-inputs]: Add python-pytest-xdist. Sort alphabetically.
Change-Id: I588c1a1dc82e3208cc1eeeefbdc58fb080775ac0
---
gnu/packages/python-science.scm | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index b00dd9455d..a4724598b7 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -23,6 +23,7 @@
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
;;; Copyright © 2022 jgart <jgart@dismail.de>
;;; Copyright © 2023, 2024 Troy Figiel <troy@troyfigiel.com>
+;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1672,7 +1673,8 @@ Mathematics (GLM) library to Python.")
(arguments
(list
#:test-flags
- '(list "-x" "-m"
+ '(list "-n" "auto"
+ "-x" "-m"
(string-append "not slow"
" and not flaky"
" and not gpu"
@@ -1798,7 +1800,10 @@ Mathematics (GLM) library to Python.")
;; These tests are rather flaky
" and not test_quiet_quit_when_cluster_leaves"
" and not multiple_clients_restart"
- " and not test_steal_twice"))
+ " and not test_steal_twice"
+ " and not test_task_groups_update_start_stop"
+ " and not test_web_preload"
+ " and not test_web_preload_worker"))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'versioneer
@@ -1873,10 +1878,11 @@ parentdir_prefix = distributed-
python-urllib3
python-zict))
(native-inputs
- (list python-importlib-metadata
+ (list python-flaky
+ python-importlib-metadata
python-pytest
python-pytest-timeout
- python-flaky
+ python-pytest-xdist
python-versioneer))
(home-page "https://distributed.dask.org")
(synopsis "Distributed scheduler for Dask")
- branch master updated (8ed9ce9d00 -> b0b9d757a7), guix-commits, 2024/03/29
- 02/49: gnu: splash: Update to 3.10.3., guix-commits, 2024/03/29
- 07/49: gnu: python-pytest-arraydiff: Enable tests., guix-commits, 2024/03/29
- 05/49: gnu: python-pytest-doctestplus: Update to 1.2.0., guix-commits, 2024/03/29
- 06/49: gnu: python-pytest-arraydiff: Update to 0.6.1., guix-commits, 2024/03/29
- 11/49: gnu: python-zarr: Speed up tests., guix-commits, 2024/03/29
- 13/49: gnu: python-dask: Speed up tests., guix-commits, 2024/03/29
- 01/49: gnu: calcmysky: Update to 0.3.2., guix-commits, 2024/03/29
- 08/49: gnu: python-pytest-filter-subpackage: Update to 0.2.0., guix-commits, 2024/03/29
- 10/49: gnu: python-partd: Enable tests., guix-commits, 2024/03/29
- 12/49: gnu: python-distributed: Speed up tests.,
guix-commits <=
- 21/49: gnu: python-asdf-standard: Update to 1.1.1., guix-commits, 2024/03/29
- 24/49: gnu: python-asdf-coordinates-schemas: Update to 0.3.0., guix-commits, 2024/03/29
- 16/49: gnu: python-ginga: Update to 5.0.0., guix-commits, 2024/03/29
- 33/49: gnu: python-radiospectra: Update to 0.5.0., guix-commits, 2024/03/29
- 17/49: gnu: python-astropy-iers-data: Update to 0.2024.3.18.0.29.47., guix-commits, 2024/03/29
- 18/49: gnu: python-cdflib: Update to 1.2.6., guix-commits, 2024/03/29
- 25/49: gnu: python-asdf-wcs-schemas: Update to 0.4.0., guix-commits, 2024/03/29
- 34/49: gnu: python-glymur: Update to 0.12.9., guix-commits, 2024/03/29
- 22/49: gnu: python-asdf-transform-schemas: Update to 0.5.0., guix-commits, 2024/03/29
- 15/49: gnu: python-glymur: Speed up tests., guix-commits, 2024/03/29