Skip to content

Commit 515ec34

Browse files
committed
Removed Coverlet flags from netcoreapp1.1 tests
Due to missing support: coverlet-coverage/coverlet#466
1 parent b64027e commit 515ec34

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/wf-build-release-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ jobs:
6060
6.0.x
6161
6262
- name: Run test .NET 3.5
63-
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stron naming
63+
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stronh naming
6464

6565
- name: Run test .NET 4.52
66-
run: dotnet test -c Release -f net452 --nologo --no-build # No coverage for NET4.5 because of bug in combination with Coverlet+Stron naming
66+
run: dotnet test -c Release -f net452 --nologo --no-build # No coverage for NET4.5 because of bug in combination with Coverlet+Strong naming
6767

6868
- name: Run test .NET Core 1.1
69-
run: dotnet test -c Release -f netcoreapp1.1 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
69+
run: dotnet test -c Release -f netcoreapp1.1 --nologo # No coverage for .NETCORE 1.1 because Coverlet doesn't support it https://github.com/coverlet-coverage/coverlet/issues/466
7070

7171
- name: Run test .NET Core 2.0
7272
run: dotnet test -c Release -f netcoreapp2.0 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover

.github/workflows/wf-build-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ jobs:
6161
6.0.x
6262
6363
- name: Run test .NET 3.5
64-
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stron naming
64+
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stronh naming
6565

6666
- name: Run test .NET 4.52
67-
run: dotnet test -c Release -f net452 --nologo --no-build # No coverage for NET4.5 because of bug in combination with Coverlet+Stron naming
67+
run: dotnet test -c Release -f net452 --nologo --no-build # No coverage for NET4.5 because of bug in combination with Coverlet+Strong naming
6868

6969
- name: Run test .NET Core 1.1
70-
run: dotnet test -c Release -f netcoreapp1.1 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
70+
run: dotnet test -c Release -f netcoreapp1.1 --nologo # No coverage for .NETCORE 1.1 because Coverlet doesn't support it https://github.com/coverlet-coverage/coverlet/issues/466
7171

7272
- name: Run test .NET Core 2.0
7373
run: dotnet test -c Release -f netcoreapp2.0 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover

.github/workflows/wf-build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ jobs:
6060
6.0.x
6161
6262
- name: Run test .NET 3.5
63-
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stron naming
63+
run: dotnet test -c Release -f net35 --nologo --no-build # No coverage for NET3.5 because of bug in combination with Coverlet+Stronh naming
6464

6565
- name: Run test .NET 4.52
66-
run: dotnet test -c Release -f net452 --nologo --no-build # No coverage for NET4.5 because of bug in combination with Coverlet+Stron naming
66+
run: dotnet test -c Release -f net452 --nologo --no-build # No coverage for NET4.5 because of bug in combination with Coverlet+Strong naming
6767

6868
- name: Run test .NET Core 1.1
69-
run: dotnet test -c Release -f netcoreapp1.1 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
69+
run: dotnet test -c Release -f netcoreapp1.1 --nologo # No coverage for .NETCORE 1.1 because Coverlet doesn't support it https://github.com/coverlet-coverage/coverlet/issues/466
7070

7171
- name: Run test .NET Core 2.0
7272
run: dotnet test -c Release -f netcoreapp2.0 --nologo /p:CollectCoverage=true /p:CoverletOutputFormat=opencover

0 commit comments

Comments
 (0)