diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-08 22:21:30 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-10-12 22:22:00 +0200 |
commit | 41f478a90022de8ffb0a415a7889888b806f5276 (patch) | |
tree | a320987878d8d7dc989f461277df848176e7fcaf | |
parent | 9089393255690691e33ff53027e3d0731cab2217 (diff) |
guix: Fix guix-minimal tests.
* Makefile.am (SCM_TESTS): Add tests/machine/hetzner.scm and
tests/machine/hetzner/http.scm conditionally.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index b05f82f13b..c4906e92f0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -587,8 +587,6 @@ SCM_TESTS = \ tests/inferior.scm \ tests/ipfs.scm \ tests/lint.scm \ - tests/machine/hetzner.scm \ - tests/machine/hetzner/http.scm \ tests/modules.scm \ tests/monads.scm \ tests/nar.scm \ @@ -641,6 +639,14 @@ else EXTRA_DIST += tests/import/go.scm endif +if HAVE_GUILE_SSH +SCM_TESTS += tests/machine/hetzner.scm \ + tests/machine/hetzner/http.scm +else +EXTRA_DIST += tests/machine/hetzner.scm \ + tests/machine/hetzner/http.scm +endif + if BUILD_DAEMON_OFFLOAD SCM_TESTS += tests/offload.scm else |