diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2026-06-23 11:00:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-23 11:00:55 -0400 |
| commit | 5e0b3fbefebaeff1fa5bfb338c760b9b9e270f02 (patch) | |
| tree | 14b22fc5b82a9db87720c820c54422c9b9c47a1c /tests/test_wheel.c | |
| parent | 70c1ba3962166853fc7a1e4f2bb1d637104312b1 (diff) | |
| parent | 0f6a1c982c2f417e9f0de968bbb7ce58299a8e8d (diff) | |
| download | stasis-1.8.0.tar.gz | |
Merge pull request #147 from jhunkeler/conda-updates1.8.0
Support modern versions of conda/mamba
Diffstat (limited to 'tests/test_wheel.c')
| -rw-r--r-- | tests/test_wheel.c | 6 |
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); } |
