-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
115bf20
commit 11289a6
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
- name: Core tests | ||
run: > | ||
dotnet test "tests/OrleanSpaces.Tests/OrleanSpaces.Tests.csproj" --configuration Release --no-build -v:normal | ||
-p:CollectCoverage=true -p:CoverletOutput=TestResults/ -p:CoverletOutputFormat=opencover --blame-hang-timeout 5m --blame-hang-dump-type full | ||
-p:CollectCoverage=true -p:CoverletOutput=TestResults/ -p:CoverletOutputFormat=opencover | ||
- name: Core tests coverage | ||
uses: simon-k/[email protected] | ||
|
@@ -48,7 +48,7 @@ jobs: | |
- name: Analyzers tests | ||
run: > | ||
dotnet test "tests/OrleanSpaces.Analyzers.Tests/OrleanSpaces.Analyzers.Tests.csproj" --configuration Release --no-build -v:normal | ||
-p:CollectCoverage=true -p:CoverletOutput=TestResults/ -p:CoverletOutputFormat=opencover --blame-hang-timeout 5m --blame-hang-dump-type full | ||
-p:CollectCoverage=true -p:CoverletOutput=TestResults/ -p:CoverletOutputFormat=opencover | ||
-p:Exclude=[OrleanSpaces]* # removing all types (*) from the assembly (OrleanSpaces) from code coverage, as it is used only as a reference source for the analyzer project. | ||
- name: Analyzers tests coverage | ||
|