From e47273a00e192f02d74c1b5bd07c36fa35cbebc8 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 22 Jun 2026 00:30:05 -0400 Subject: Update test_wheel.c to use conda_capababilities() --- tests/test_wheel.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/test_wheel.c') diff --git a/tests/test_wheel.c b/tests/test_wheel.c index e486b05..c9aff6a 100644 --- a/tests/test_wheel.c +++ b/tests/test_wheel.c @@ -175,17 +175,19 @@ int main(int argc, char *argv[]) { delivery_get_conda_installer_url(&ctx, install_url, PATH_MAX); delivery_get_conda_installer(&ctx, install_url); delivery_install_conda(ctx.conda.installer_path, ctx.storage.conda_install_prefix); + delivery_conda_enable(&ctx); guard_free(install_url); if (conda_activate(ctx.storage.conda_install_prefix, "base")) { SYSERROR("conda_activate failed"); exit(1); } - if (conda_exec("install -y boa conda-build")) { + if (conda_exec("install -y conda-build")) { SYSERROR("conda_exec failed"); exit(1); } - if (conda_setup_headless()) { + + if (conda_setup_headless(&ctx.conda.capabilities)) { SYSERROR("conda_setup_headless failed"); exit(1); } -- cgit