aboutsummaryrefslogtreecommitdiff
path: root/tests/rt_generic_ng_based_on.sh
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2026-06-23 11:00:55 -0400
committerGitHub <noreply@github.com>2026-06-23 11:00:55 -0400
commit5e0b3fbefebaeff1fa5bfb338c760b9b9e270f02 (patch)
tree14b22fc5b82a9db87720c820c54422c9b9c47a1c /tests/rt_generic_ng_based_on.sh
parent70c1ba3962166853fc7a1e4f2bb1d637104312b1 (diff)
parent0f6a1c982c2f417e9f0de968bbb7ce58299a8e8d (diff)
downloadstasis-5e0b3fbefebaeff1fa5bfb338c760b9b9e270f02.tar.gz
Merge pull request #147 from jhunkeler/conda-updatesHEAD1.8.0master
Support modern versions of conda/mamba
Diffstat (limited to 'tests/rt_generic_ng_based_on.sh')
-rw-r--r--tests/rt_generic_ng_based_on.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/rt_generic_ng_based_on.sh b/tests/rt_generic_ng_based_on.sh
new file mode 100644
index 0000000..de5af24
--- /dev/null
+++ b/tests/rt_generic_ng_based_on.sh
@@ -0,0 +1,30 @@
+#!/usr/bin/env bash
+here="$(dirname ${BASH_SOURCE[0]})"
+source $here/setup.sh
+
+TEST_NAME=gbo_ng
+PYTHON_VERSIONS=(
+ 3.11
+)
+setup_workspace "$TEST_NAME"
+run_command install_stasis
+
+ln -s "$TEST_DATA"/"$TEST_NAME".yml
+for py_version in "${PYTHON_VERSIONS[@]}"; do
+ run_command run_stasis --python "$py_version" \
+ --no-docker \
+ --no-artifactory \
+ "$TEST_DATA"/"$TEST_NAME".ini
+done
+
+check_output_add "(null)"
+run_command check_output_stasis_dir stasis/*/output
+check_output_reset
+
+# NOTE: indexer default output directory is "output"
+check_output_add "(null)"
+run_command run_stasis_indexer stasis
+run_command check_output_indexed_dir output
+check_output_reset
+
+teardown_workspace "$TEST_NAME"