From b22d598ebff550cc0fe3761c3c44e958e1a1117d Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 19 Feb 2025 16:45:49 -0800 Subject: [PATCH] Move test.sh to scripts folder --- .github/actions/build/action.yml | 2 +- docker/tests/mono/startup.sh | 4 ++-- test.sh => scripts/test.sh | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename test.sh => scripts/test.sh (100%) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index b24ef0b6a..749de24d3 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -170,7 +170,7 @@ runs: framework="${{ inputs.framework }}" runtime="${{ inputs.runtime }}" - cp test.sh "_tests/$framework/$runtime/publish" + cp scripts/test.sh "_tests/$framework/$runtime/publish" rm -f _tests/$framework/$runtime/*.log.config diff --git a/docker/tests/mono/startup.sh b/docker/tests/mono/startup.sh index 30b5c43f1..f2c5b7044 100644 --- a/docker/tests/mono/startup.sh +++ b/docker/tests/mono/startup.sh @@ -7,9 +7,9 @@ cd /data/test runTest() { - bash test.sh Linux $1 + bash scripts/test.sh Linux $1 cp TestResult.xml /data/_tests_results/TestResult_$1.xml } runTest Integration -runTest Unit \ No newline at end of file +runTest Unit diff --git a/test.sh b/scripts/test.sh similarity index 100% rename from test.sh rename to scripts/test.sh