Skip to content

Commit e88caf0

Browse files
author
Fortinbra
committed
fix(ci): exclude performance tests from Docker build workflow
The Docker build workflow was missing Category!=Performance in the test filter, causing NBomber performance tests to run on GitHub Actions runners where they predictably fail latency thresholds. The CI workflow already had the correct filter.
1 parent 02361fe commit e88caf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker-build-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
dotnet test BudgetExperiment.sln \
7272
--configuration Release \
7373
--no-build \
74-
--filter "FullyQualifiedName!~E2E&Category!=ExternalDependency" \
74+
--filter "FullyQualifiedName!~E2E&Category!=ExternalDependency&Category!=Performance" \
7575
--collect:"XPlat Code Coverage" \
7676
--logger "trx" \
7777
--results-directory ./TestResults

0 commit comments

Comments
 (0)