From 3c67b344f2f80abf3959f14a6045e9cd3b6c99ba Mon Sep 17 00:00:00 2001 From: Webber Date: Wed, 27 Nov 2019 21:27:46 +0100 Subject: [PATCH] Set project path --- test-runner/entrypoint.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test-runner/entrypoint.sh b/test-runner/entrypoint.sh index b4e9442..9dc1dff 100644 --- a/test-runner/entrypoint.sh +++ b/test-runner/entrypoint.sh @@ -62,7 +62,8 @@ xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' \ /opt/Unity/Editor/Unity \ -batchmode \ -logfile /dev/stdout \ - -runTests "$UNITY_PROJECT_PATH" \ + -projectPath "$UNITY_PROJECT_PATH" \ + -runTests \ -testPlatform editmode \ -testResults "$UNITY_PROJECT_PATH/editmode-results.xml" @@ -88,7 +89,8 @@ xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' \ /opt/Unity/Editor/Unity \ -batchmode \ -logfile /dev/stdout \ - -runTests "$UNITY_PROJECT_PATH" \ + -projectPath "$UNITY_PROJECT_PATH" \ + -runTests \ -testPlatform playmode \ -testResults "$UNITY_PROJECT_PATH/playmode-results.xml"