Skip to content

Commit f8b2428

Browse files
committed
Fixing interation tests
1 parent 82979f9 commit f8b2428

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/integration-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545

4646
- name: Run IntegrationTests
4747
run: |
48-
dotnet test IntegrationTests --no-build --verbosity normal --diag:logs/${{ runner.os }}/logs.txt --blame --blame-crash --blame-hang --blame-hang-timeout 60s --blame-crash-collect-always -- xunit.stopOnFail=true
48+
dotnet test Tests/IntegrationTests --no-build --verbosity normal --diag:logs/${{ runner.os }}/logs.txt --blame --blame-crash --blame-hang --blame-hang-timeout 60s --blame-crash-collect-always -- xunit.stopOnFail=true
4949
50-
# mv -v IntegrationTests/TestResults/*/*.* TestResults/IntegrationTests/
50+
# mv -v Tests/IntegrationTests/TestResults/*/*.* TestResults/IntegrationTests/
5151

5252
- name: Upload Test Logs
5353
if: always()

.github/workflows/unit-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
dotnet test Tests/UnitTests --no-build --verbosity normal --collect:"XPlat Code Coverage" --settings Tests/UnitTests/coverlet.runsettings --diag:logs/${{ runner.os }}/logs.txt --blame --blame-crash --blame-hang --blame-hang-timeout 60s --blame-crash-collect-always -- xunit.stopOnFail=true
5656
57-
# mv -v UnitTests/TestResults/*/*.* TestResults/UnitTests/
57+
# mv -v Tests/UnitTests/TestResults/*/*.* TestResults/UnitTests/
5858

5959
- name: Upload Test Logs
6060
if: always()

0 commit comments

Comments
 (0)