File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed
Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ jobs:
5050 - name : Build
5151 run : dotnet build /p:Version=${{ steps.version_step.outputs.fullSemVer }} --no-restore -c Debug -v n
5252 - name : Unit Tests
53- run : dotnet test -c Debug --no-build -v n -- -- filter-trait Category=Unit --ignore-exit-code 8
53+ run : dotnet test -c Debug --no-build -v n --filter-trait Category=Unit
5454 - name : Integration Tests
5555 run : |
56- dotnet test tests/HydraScript.IntegrationTests -c Debug --no-build -v n -- --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml
56+ dotnet test --project tests/HydraScript.IntegrationTests -c Debug --no-build -v n --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml
5757 mkdir coverage-report
5858 - name : Code Coverage Summary Report For Merge Request
5959 if : github.event_name == 'pull_request'
Original file line number Diff line number Diff line change 1010 <File Path =" Directory.Build.props" />
1111 <File Path =" Directory.Packages.props" />
1212 <File Path =" GitVersion.yml" />
13+ <File Path =" global.json" />
1314 <File Path =" hydrascript-logo.jpg" />
1415 <File Path =" LICENSE" />
1516 <File Path =" Readme.md" />
Original file line number Diff line number Diff line change 1+ {
2+ "test" : {
3+ "runner" : " Microsoft.Testing.Platform"
4+ }
5+ }
Original file line number Diff line number Diff line change 44 <PropertyGroup >
55 <IsTestProject >true</IsTestProject >
66 <OutputType >Exe</OutputType >
7- <TestingPlatformDotnetTestSupport >true</TestingPlatformDotnetTestSupport >
87 <UseMicrosoftTestingPlatformRunner >true</UseMicrosoftTestingPlatformRunner >
8+ <TestingPlatformCommandLineArguments >--ignore-exit-code 8</TestingPlatformCommandLineArguments >
99 </PropertyGroup >
1010
1111 <ItemGroup >
You can’t perform that action at this time.
0 commit comments