From 084d79706a55b20a34f813cd646e639246ebec63 Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Thu, 5 Sep 2024 16:14:00 +0000 Subject: [PATCH] failed to get non-staging tests working, made a note in comments --- runme.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/runme.sh b/runme.sh index e23d656a21..c5ed61b311 100644 --- a/runme.sh +++ b/runme.sh @@ -3,4 +3,13 @@ source /venv/bin/activate pytest parsl/tests/ --config ./htex_k8s_kind.py -k 'not issue3328 and not staging_required and not shared_fs' -x --random-order -PYTHONPATH=/usr/lib/python3.12/site-packages/ pytest parsl/tests/ --config ./taskvine_k8s_kind.py -k 'not issue3328 and not shared_fs' -x --random-order --log-cli-level=DEBUG + + +# I tried letting staging_required tests run here but they do not -- a bit confused about this comment in taskvine: +# +# # Absolute paths are assumed to be in shared filesystem, and thus +# # not staged by taskvine. +# which I guess is saying something is making assumptions about the presence of a shared filesystem even when defaulting to shared_fs=False in the taskvine config? + + +PYTHONPATH=/usr/lib/python3.12/site-packages/ pytest parsl/tests/ --config ./taskvine_k8s_kind.py -k 'not issue3328 and and not staging_required and not shared_fs' -x --random-order --log-cli-level=DEBUG