civodul pushed a commit to branch core-updates-frozen
in repository guix.
commit 9bea983e4f5a1c07737336163bc6835f6c582a6e
Author: Ludovic Courtès <[email protected]>
AuthorDate: Tue Sep 7 14:44:39 2021 +0200
tests: Disable grafts in 'tests/builders.scm'.
This is required since the introduction of the OpenSSL graft in the
parent commit so that calling 'package-derivation' in the Python tests
would not trigger a build.
* tests/builders.scm <top level>: Add '%graft?' call.
---
tests/builders.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tests/builders.scm b/tests/builders.scm
index f609631..0b5577c 100644
--- a/tests/builders.scm
+++ b/tests/builders.scm
@@ -49,6 +49,9 @@
(define url-fetch*
(store-lower url-fetch))
+;; Globally disable grafts because they can trigger early builds.
+(%graft? #f)
+
(test-begin "builders")