Skip to content

Commit 46ddeb3

Browse files
committed
ycx
1 parent 066b99a commit 46ddeb3

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,26 +64,26 @@ jobs:
6464
if: runner.os == 'Linux'
6565
continue-on-error: true
6666
run: |
67-
mkdir -p test-results
67+
mkdir -p test-results/Ubuntu
6868
xvfb-run -a dotnet test src/ElectronNET.IntegrationTests/ElectronNET.IntegrationTests.csproj \
6969
-c Release --no-build -r ${{ matrix.rid }} -p:RuntimeIdentifier=${{ matrix.rid }} \
70-
--logger "trx;LogFileName=TestResults.trx" \
70+
--logger "trx;LogFileName=Ubuntu.trx" \
7171
--logger "console;verbosity=detailed" \
7272
--results-directory test-results
7373
7474
- name: Run tests (Windows)
7575
if: runner.os == 'Windows'
7676
continue-on-error: true
7777
run: |
78-
New-Item -ItemType Directory -Force -Path test-results | Out-Null
79-
dotnet test src/ElectronNET.IntegrationTests/ElectronNET.IntegrationTests.csproj -c Release --no-build -r ${{ matrix.rid }} -p:RuntimeIdentifier=${{ matrix.rid }} --logger "trx;LogFileName=TestResults.trx" --logger "console;verbosity=detailed" --results-directory test-results
78+
New-Item -ItemType Directory -Force -Path test-results/Windows | Out-Null
79+
dotnet test src/ElectronNET.IntegrationTests/ElectronNET.IntegrationTests.csproj -c Release --no-build -r ${{ matrix.rid }} -p:RuntimeIdentifier=${{ matrix.rid }} --logger "trx;LogFileName=Windows.trx" --logger "console;verbosity=detailed" --results-directory test-results
8080
8181
- name: Run tests (macOS)
8282
if: runner.os == 'macOS'
8383
continue-on-error: true
8484
run: |
85-
mkdir -p test-results
86-
dotnet test src/ElectronNET.IntegrationTests/ElectronNET.IntegrationTests.csproj -c Release --no-build -r ${{ matrix.rid }} -p:RuntimeIdentifier=${{ matrix.rid }} --logger "trx;LogFileName=TestResults.trx" --logger "console;verbosity=detailed" --results-directory test-results
85+
mkdir -p test-results/macOS
86+
dotnet test src/ElectronNET.IntegrationTests/ElectronNET.IntegrationTests.csproj -c Release --no-build -r ${{ matrix.rid }} -p:RuntimeIdentifier=${{ matrix.rid }} --logger "trx;LogFileName=macOS.trx" --logger "console;verbosity=detailed" --results-directory test-results
8787
8888
- name: Upload raw test results
8989
if: always()
@@ -140,6 +140,7 @@ jobs:
140140
check_run: true
141141
check_run_annotations: all tests
142142
check_run_annotations_branch: "*"
143+
report_individual_runs: true
143144
fail_on: test failures
144145

145146
- name: Summary

0 commit comments

Comments
 (0)