Skip to content

Commit e2819df

Browse files
committed
exclude mobile and tesktop tests from framework build
1 parent c8e3cca commit e2819df

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/github-actions-tests-on-windows.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@ jobs:
1717
run: dotnet clean
1818
- name: Install dependencies
1919
run: dotnet restore
20+
- name: Setup Chrome
21+
uses: browser-actions/setup-chrome@latest
22+
- name: Setup Edge
23+
uses: browser-actions/setup-edge@latest
2024
- name: Build
2125
run: dotnet build --configuration Debug --no-restore
2226
- name: Test
2327
id: test
2428
continue-on-error: true
25-
run: dotnet test --no-build --no-restore --verbosity normal --filter Category=CI --logger "trx;LogFileName=test-results.trx"
29+
run: |
30+
dotnet test --no-build --no-restore --verbosity normal --filter "Category=CI&FullyQualifiedName!~Mobile&FullyQualifiedName!~Desktop" --logger "trx;LogFileName=test-results.trx"
2631
- name: Publish Test Results
2732
uses: EnricoMi/publish-unit-test-result-action/windows@v2
2833
if: always()

0 commit comments

Comments
 (0)