From 83950f0631b3d77213f70e5324afaf9cd6c4480b Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Mon, 31 Oct 2022 12:06:32 +0100 Subject: [PATCH] Explicitly set test data location for converter tests --- .github/workflows/converter_tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/converter_tests.yaml b/.github/workflows/converter_tests.yaml index dc3179f8b428..f4a0c8e8ebdf 100644 --- a/.github/workflows/converter_tests.yaml +++ b/.github/workflows/converter_tests.yaml @@ -69,7 +69,7 @@ jobs: mapfile -t TOOL_ARRAY < tool_list.txt for CONVERTER in "${TOOL_ARRAY[@]}"; do json=$(mktemp -u -p json_output --suff .json) - planemo test --test_output_json "$json" --galaxy_python_version ${{ matrix.python-version }} --galaxy_root 'galaxy root' "$CONVERTER" || EXIT_CODE=$? + planemo test --test_output_json "$json" --galaxy_python_version ${{ matrix.python-version }} --galaxy_root 'galaxy root' "$CONVERTER" --test_data 'galaxy root/test-data/' || EXIT_CODE=$? done planemo merge_test_reports json_output/*.json tool_test_output.json planemo test_reports tool_test_output.json --test_output tool_test_output.html