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

commit ff8a814719d7e268e6222b0f320a7c738fdb3eb3
Author: Greg Hogan <c...@greghogan.com>
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 | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index b2b1fa872d..0ab87a9f7d 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -1519,14 +1519,8 @@ development.")
     (arguments
      (list
       #:configure-flags #~(list "-DUSE_EXTERNAL_GTEST=ON")
-      #:phases
-           #~(modify-phases %standard-phases
-               (replace 'check
-                 (lambda* (#:key tests? #:allow-other-keys)
-                   (when tests?
-                     (invoke "ctest" "-E"
-                             ;; This tests needs network .
-                             "pdal_io_(stac|copc)_reader_test")))))))
+      #:parallel-tests? #f
+      #:test-exclude "pdal_io_(stac|copc)_reader_test"))
     (native-inputs (list python googletest))
     (inputs (list gdal
                   h3

Reply via email to