diff --git a/.github/workflows/TestExecute Simple Test.yml b/.github/workflows/TestExecute Simple Test.yml index b5f1d35..804d194 100644 --- a/.github/workflows/TestExecute Simple Test.yml +++ b/.github/workflows/TestExecute Simple Test.yml @@ -8,6 +8,8 @@ on: description: Project to be executed options: - HeadStart + - Web + - Mobile jobs: DownloadInstallAndRunTE: name: Install and Run TestExecute (${{ github.actor }}) diff --git a/test-runner.bat b/test-runner.bat index e9b6937..8929042 100644 --- a/test-runner.bat +++ b/test-runner.bat @@ -13,6 +13,8 @@ REM By default we run HeadStart Testing set ProjectPath="%cd%\TC_Head_Start_Suite.pjs" IF "%2" == "HeadStart" GOTO HeadStartProjectRun +IF "%2" == "Mobile" GOTO MobileProjectRun +IF "%2" == "Web" GOTO WebProjectRun IF NOT %2.==. GOTO ParamProjectPath GOTO EchoProjectPath @@ -20,6 +22,14 @@ GOTO EchoProjectPath set ProjectPath="%cd%\TC_Head_Start_Suite.pjs" GOTO EchoProjectPath +:MobileProjectRun +set ProjectPath="%cd%\MobileTesting\MobileTesting.pjs" +GOTO EchoProjectPath + +:WebProjectRun +set ProjectPath="%cd%\WebTesting\WebTesting.pjs" +GOTO EchoProjectPath + :ParamProjectPath set ProjectPath=%2 GOTO EchoProjectPath