diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-09-07 14:44:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-09-07 14:44:39 +0200 |
commit | 9bea983e4f5a1c07737336163bc6835f6c582a6e (patch) | |
tree | 60e13d3fbe287b9988c88b3fe6b6cf33b5c9f646 | |
parent | d9dfbf886ddbb92dfdaa118bb9765e78aad5c53a (diff) |
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.
-rw-r--r-- | tests/builders.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/builders.scm b/tests/builders.scm index f609631ae7..0b5577c7a3 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") |