aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-06-22 00:30:05 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-06-22 11:57:06 -0400
commite47273a00e192f02d74c1b5bd07c36fa35cbebc8 (patch)
tree8a4ba74e0e7c4e835cdaf38fc561501296fb5b94 /tests
parent95c7ff39db38157d326a60632d7aee953e9860bd (diff)
downloadstasis-e47273a00e192f02d74c1b5bd07c36fa35cbebc8.tar.gz
Update test_wheel.c to use conda_capababilities()
Diffstat (limited to 'tests')
-rw-r--r--tests/test_wheel.c6
1 files changed, 4 insertions, 2 deletions
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);
}