aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2025-04-02 15:22:47 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2025-04-02 15:22:47 -0400
commit90755c85131cceb9f6d628703042129dc10dfca9 (patch)
tree3e72b6af4bf4d8e0ea80ca563e6485eb8d51be7a
parent27bd4bf8abd7e9a29ca89f67503fd9291757a97b (diff)
downloadstasis-90755c85131cceb9f6d628703042129dc10dfca9.tar.gz
base and "based_on" installations shall hardcode the requested python version in the YAML config instead of trusting it
-rw-r--r--tests/test_conda.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_conda.c b/tests/test_conda.c
index 81f593f..4d437e4 100644
--- a/tests/test_conda.c
+++ b/tests/test_conda.c
@@ -111,7 +111,7 @@ void test_conda_setup_headless() {
void test_conda_env_create_from_uri() {
const char *url = "https://ssb.stsci.edu/jhunk/stasis_test/test_conda_env_create_from_uri.yml";
char *name = strdup(__FUNCTION__);
- STASIS_ASSERT(conda_env_create_from_uri(name, (char *) url) == 0, "creating an environment from a remote source failed");
+ STASIS_ASSERT(conda_env_create_from_uri(name, (char *) url, "3.11") == 0, "creating an environment from a remote source failed");
free(name);
}