diff options
author | Greg Hogan <code@greghogan.com> | 2024-10-22 18:09:26 +0000 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-07-30 16:28:12 +0000 |
commit | 2b5ca96705c1673655dafbb20781822dfc4bf0a1 (patch) | |
tree | 0dc24c6a192c64f30afa9c76694ce577a497f499 | |
parent | 7ebab04aa9dda734aba9d753285d758334d42374 (diff) |
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
-rw-r--r-- | gnu/packages/geo.scm | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 1b697a8db5..c7524903ba 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 |