Skip to content

Commit

Permalink
changed test running command
Browse files Browse the repository at this point in the history
  • Loading branch information
kerenr-jfrog committed Sep 16, 2024
1 parent b88724e commit d21312e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,17 @@ 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

- 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
- name: Run MSTest Project
run: |
vstest.console.exe ./UnitTestJfrogVSExtension/bin/Debug/UnitTestJfrogVSExtension.dll
shell: pwsh

0 comments on commit d21312e

Please sign in to comment.