guix_mirror_bot pushed a commit to branch c++-team
in repository guix.

commit 5accbf8131bac60272ea06fa1d6e62cd3faa933e
Author: Greg Hogan <[email protected]>
AuthorDate: Tue Oct 22 18:09:26 2024 +0000

    gnu: pdal: Use :#test-exclude and disable parallel tests.
    
    * gnu/packages/geo.scm (pdal)[arguments]
    <#:parallel-tests?>: Disable.
    <#:test-exclude>: Move exclude regex here from 'check phase.
    <#:phases>: Remove 'check phase.
    
    Change-Id: Ib148edc5e5c5f251797360cacda1dfb5de71d664
---
 gnu/packages/geo.scm | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 73c5599324..58d09b638b 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1519,13 +1519,8 @@ development.")
         (base32 "1w6cg9akb46xf6h7cw0nrg109d6n9035qxczk2scvaxg76hgnsz7"))))
     (build-system cmake-build-system)
     (arguments
-     (list #:phases
-           #~(modify-phases %standard-phases
-               (replace 'check
-                 (lambda* (#:key tests? #:allow-other-keys)
-                   (when tests?
-                     (invoke "ctest" "-E" ;; This test hangs.
-                             "pdal_io_stac_reader_test")))))))
+     (list #:parallel-tests? #f
+           #:test-exclude "pdal_io_stac_reader_test"))
     (native-inputs (list python))
     (inputs (list gdal
                   h3

Reply via email to