guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 98907260ed77dd98f160686ca470bb0851016da1
Author: Greg Hogan <[email protected]>
AuthorDate: Tue Oct 22 18:09:28 2024 +0000
gnu: simgear: Use #:test-exclude.
* gnu/packages/games.scm (simgear)[arguments]
<#:test-exclude>: Move exclude regex here from 'check phase.
<#:phases>: Remove 'check phase.
Change-Id: I3ac389580949f8edafca5768335d491a2ea86650
---
gnu/packages/games.scm | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index b0f13cfee9..25555590c1 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -11134,13 +11134,7 @@ levels to unlock.")
(build-system cmake-build-system)
(arguments
`(#:configure-flags (list "-DSYSTEM_EXPAT=ON")
- #:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- ;; Skip tests that require internet access.
- (invoke "ctest" "-E" "(http|dns)")))))))
+ #:test-exclude "(http|dns)"))
(inputs
`(("boost" ,boost)
("curl" ,curl)