diff options
| author | Greg Hogan <code@greghogan.com> | 2024-10-22 18:09:26 +0000 |
|---|---|---|
| committer | Greg Hogan <code@greghogan.com> | 2025-08-04 04:10:29 +0000 |
| commit | ab8d76505d900ed4bf6c2aa86fa8ef03e7cf2904 (patch) | |
| tree | 681fc0ca34b6b887b85268a561934c0766e3238b /gnu/packages | |
| parent | e0015d9acc7dec73e967de82ecdd9bbb339b9f5a (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
Diffstat (limited to 'gnu/packages')
| -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 2d5acce01b3..198ae2873ad 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -1446,14 +1446,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 |
