Skip to content

Commit 0b9c6f1

Browse files
CI: skip SQL-dependent Installer tests
VersionDetectionTests, IdempotencyTests, and AdversarialTests require a running SQL Server instance via TestDatabaseHelper, which the GitHub runner doesn't provide. Filter to only the pure-logic classes (UpgradeOrderingTests, FileFilteringTests) which already passed in the prior run.
1 parent d9f24d4 commit 0b9c6f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Run Installer tests
7272
if: steps.filter.outputs.installer == 'true' || github.event_name == 'release'
73-
run: dotnet test Installer.Tests/Installer.Tests.csproj -c Release --no-build --verbosity normal
73+
run: dotnet test Installer.Tests/Installer.Tests.csproj -c Release --no-build --verbosity normal --filter "FullyQualifiedName!~VersionDetectionTests&FullyQualifiedName!~IdempotencyTests&FullyQualifiedName!~AdversarialTests"
7474

7575
- name: Get version
7676
id: version

0 commit comments

Comments
 (0)