Skip to content

Commit cbebe63

Browse files
committed
ci: change test calls to make GitHub Actions logger work
1 parent 39dfccc commit cbebe63

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/verification.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- stable
88
paths:
99
- 'src/**'
10-
- 'tests/**'
10+
- 'tests/**'
1111

1212
pull_request:
1313
types:
@@ -61,7 +61,10 @@ jobs:
6161
run: dotnet build -c release -p:ContinuousIntegrationBuild=true
6262

6363
- name: 🧪 Run unit tests
64-
run: dotnet test -c release --no-build --logger GitHubActions
64+
run: |
65+
dotnet test tests/bunit.core.tests -c release --no-build --logger GitHubActions
66+
dotnet test tests/bunit.web.tests -c release --no-build --logger GitHubActions
67+
dotnet test tests/bunit.web.testcomponents.tests -c release --no-build --logger GitHubActions
6568
6669
- name: 🗳️ Create library packages
6770
run: |

tests/bunit.testassets/bunit.testassets.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Razor">
1+
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.1;net5.0</TargetFrameworks>

0 commit comments

Comments
 (0)