From d21312e7a40305202a8c4073518df221056385c1 Mon Sep 17 00:00:00 2001 From: kerenr-jfrog Date: Mon, 16 Sep 2024 15:23:07 +0300 Subject: [PATCH] changed test running command --- .github/workflows/tests.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 432474d..088b9eb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,9 +37,9 @@ jobs: dotnet restore nuget restore - - name: Download JFrog CLI executable + - name: Download JFrog CLI executable env: - JFROG_CLI_VERSION: ${{ env.JFROG_CLI_VERSION }} + JFROG_CLI_VERSION: '2.67.0' # jfrog cli version can be changed here run: | .\JFrogVSExtension\Resources\DownloadJfrogCli.ps1 shell: pwsh @@ -47,5 +47,7 @@ jobs: - name: Build VSIX Project # build the vsix project using multi-core compilation and parallel builds run: msbuild ./JFrogVSExtension/ /p:Configuration=Release /p:Platform="AnyCPU" /p:BuildInParallel=true /m - - name: Run tests - run: dotnet test --no-build --verbosity normal \ No newline at end of file + - name: Run MSTest Project + run: | + vstest.console.exe ./UnitTestJfrogVSExtension/bin/Debug/UnitTestJfrogVSExtension.dll + shell: pwsh