From c17337e732797d36bb46253b43f17b008ad86b07 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Fri, 7 Aug 2020 23:47:11 -0400 Subject: [PATCH] We get passed an env var that tells us how to run trial Also temp-dir made no difference and don't need the find either. --- misc/python3/ratchet.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/misc/python3/ratchet.sh b/misc/python3/ratchet.sh index c9bf6bed1..e9f8a4c04 100755 --- a/misc/python3/ratchet.sh +++ b/misc/python3/ratchet.sh @@ -11,8 +11,7 @@ cd "../.." # Since both of the next calls are expected to exit non-0, relax our guard. set +e -trial --temp-directory /tmp/_trial_temp.ratchet --reporter subunitv2-file allmydata -find "${SUBUNITREPORTER_OUTPUT_PATH}" +trial ${TAHOE_LAFS_TRIAL_ARGS} allmydata subunit2junitxml < "${SUBUNITREPORTER_OUTPUT_PATH}" > "$base/results.xml" set -e