Skip to content

Commit 8cf4943

Browse files
committed
fix: run windows verification until first error
1 parent 41e3308 commit 8cf4943

2 files changed

Lines changed: 3 additions & 9 deletions

File tree

.github/workflows/verification-dotnet-nightly.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@ jobs:
3333
3434
- name: 🧪 Run unit tests
3535
run: |
36-
dotnet test ./tests/bunit.core.tests/bunit.core.tests.csproj -c release --no-restore -f net7.0 --logger:"console;verbosity=normal" --blame-hang-timeout 15s --blame-hang-dump-type full --blame-crash-dump-type full
37-
dotnet test ./tests/bunit.web.tests/bunit.web.tests.csproj -c release --no-restore -f net7.0 --logger:"console;verbosity=normal" --blame-hang-timeout 15s --blame-hang-dump-type full --blame-crash-dump-type full
38-
dotnet test ./tests/AngleSharpWrappers.Tests/AngleSharpWrappers.Tests.csproj -c release --no-restore -f net7.0 --logger:"console;verbosity=normal" --blame-hang-timeout 15s --blame-hang-dump-type full --blame-crash-dump-type full
39-
36+
dotnet test -c release --no-restore -f net7.0 --logger:"console;verbosity=normal" --blame-hang-timeout 15s --blame-hang-dump-type full --blame-crash-dump-type full
4037
- name: 📛 Upload hang- and crash-dumps on test failure
4138
if: failure()
4239
uses: actions/upload-artifact@v3

.github/workflows/verification.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
include-prerelease: true
4848

4949
- name: 🎨 Setup color
50+
if: matrix.os != 'windows-latest'
5051
run: |
5152
echo "DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION=1" >> $GITHUB_ENV
5253
echo "TERM=xterm" >> $GITHUB_ENV
@@ -63,11 +64,7 @@ jobs:
6364

6465
- name: 🧪 Run unit tests
6566
run: |
66-
dotnet test ./tests/bunit.core.tests/bunit.core.tests.csproj -c release --blame-hang-timeout 15s --blame-hang-dump-type full --blame-crash-dump-type full
67-
dotnet test ./tests/bunit.web.tests/bunit.web.tests.csproj -c release --blame-hang-timeout 15s --blame-hang-dump-type full --blame-crash-dump-type full
68-
dotnet test ./tests/bunit.web.testcomponents.tests/bunit.web.testcomponents.tests.csproj -c release --blame-hang-timeout 15s --blame-hang-dump-type full --blame-crash-dump-type full
69-
dotnet test ./tests/AngleSharpWrappers.Tests/AngleSharpWrappers.Tests.csproj -c release --blame-hang-timeout 15s --blame-hang-dump-type full --blame-crash-dump-type full
70-
67+
dotnet test -c release --blame-hang-timeout 15s --blame-hang-dump-type full --blame-crash-dump-type full
7168
- name: 📛 Upload hang- and crash-dumps on test failure
7269
if: failure()
7370
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)