mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-18 13:28:12 -04:00
Do not run admin and client tests in parallel as it causes issues with the in-memory SQLite db (#126)
This commit is contained in:
8
.github/workflows/dotnet-e2e-tests.yml
vendored
8
.github/workflows/dotnet-e2e-tests.yml
vendored
@@ -25,5 +25,9 @@ jobs:
|
||||
run: dotnet build
|
||||
- name: Ensure browsers are installed
|
||||
run: pwsh src/Tests/AliasVault.E2ETests/bin/Debug/net8.0/playwright.ps1 install --with-deps
|
||||
- name: Run E2E tests
|
||||
run: dotnet test src/Tests/AliasVault.E2ETests --no-build --verbosity normal
|
||||
- name: Run AdminTests
|
||||
run: dotnet test src/Tests/AliasVault.E2ETests --no-build --verbosity normal --filter "Category=AdminTests"
|
||||
- name: Run ClientTests
|
||||
run: dotnet test src/Tests/AliasVault.E2ETests --no-build --verbosity normal --filter "Category=ClientTests"
|
||||
- name: Run remaining tests
|
||||
run: dotnet test src/Tests/AliasVault.E2ETests --no-build --verbosity normal --filter "Category!=AdminTests&Category!=ClientTests"
|
||||
|
||||
Reference in New Issue
Block a user