diff options
-rw-r--r-- | gnu/packages/node.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index 98441f29d9..50890d1541 100644 --- a/gnu/packages/node.scm +++ b/gnu/packages/node.scm @@ -406,8 +406,9 @@ devices.") ;; Run only the CI tests. The default test target requires additional ;; add-ons from NPM that are not distributed with the source. #:test-target "test-ci-js" - ;; For now - #:tests? ,(not (target-riscv64?)) + ;; We only use this package to bootstrap our later node versions. + ;#:tests? ,(and (not (%current-target-system)) + ; (target-x86?)) ;; Some of the tests can timeout under heavy load. #:parallel-tests? ,(target-x86?) #:modules |