summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-08 22:21:30 +0200
committerLudovic Courtès <ludo@gnu.org>2025-10-12 22:22:00 +0200
commit41f478a90022de8ffb0a415a7889888b806f5276 (patch)
treea320987878d8d7dc989f461277df848176e7fcaf
parent9089393255690691e33ff53027e3d0731cab2217 (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.am10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index b05f82f13b2..c4906e92f06 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -587,8 +587,6 @@ SCM_TESTS = \
587 tests/inferior.scm \ 587 tests/inferior.scm \
588 tests/ipfs.scm \ 588 tests/ipfs.scm \
589 tests/lint.scm \ 589 tests/lint.scm \
590 tests/machine/hetzner.scm \
591 tests/machine/hetzner/http.scm \
592 tests/modules.scm \ 590 tests/modules.scm \
593 tests/monads.scm \ 591 tests/monads.scm \
594 tests/nar.scm \ 592 tests/nar.scm \
@@ -641,6 +639,14 @@ else
641EXTRA_DIST += tests/import/go.scm 639EXTRA_DIST += tests/import/go.scm
642endif 640endif
643 641
642if HAVE_GUILE_SSH
643SCM_TESTS += tests/machine/hetzner.scm \
644 tests/machine/hetzner/http.scm
645else
646EXTRA_DIST += tests/machine/hetzner.scm \
647 tests/machine/hetzner/http.scm
648endif
649
644if BUILD_DAEMON_OFFLOAD 650if BUILD_DAEMON_OFFLOAD
645SCM_TESTS += tests/offload.scm 651SCM_TESTS += tests/offload.scm
646else 652else