From 9d2646362964d05f2c3346b5cd24ad010fdd2039 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 18 Jun 2026 12:29:13 -0400 Subject: Add indexer arugment '--micromamba-download-url' * Add is_file_compressed() function to utils * Call micromamba_install() from tests --- tests/test_conda.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tests') diff --git a/tests/test_conda.c b/tests/test_conda.c index bbbef3c..4d0b4d8 100644 --- a/tests/test_conda.c +++ b/tests/test_conda.c @@ -26,6 +26,7 @@ void test_micromamba() { for (size_t i = 0; i < sizeof(tc) / sizeof(*tc); i++) { struct testcase *item = &tc[i]; + STASIS_ASSERT(micromamba_install(&item->mminfo) == 0, "micromamba installation failed"); int result = micromamba(&item->mminfo, (char *) item->cmd); if (result > 0) { result = result >> 8; -- cgit