Skip to content

Commit cf3ebdb

Browse files
committed
ci: exclude performance tests from CI pipeline
Performance tests are flaky due to environment sensitivity and can fail on shared CI infrastructure even when code is correct. This change filters out tests with 'Performance' in their name from the CI test run to improve build reliability. Performance tests can still be run locally when needed.
1 parent 00760ad commit cf3ebdb

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
@@ -26,4 +26,4 @@ jobs:
2626
run: dotnet build --configuration Release --no-restore
2727

2828
- name: Test
29-
run: dotnet test --configuration Release --no-build
29+
run: dotnet test --configuration Release --no-build --filter "FullyQualifiedName!~Performance"

0 commit comments

Comments
 (0)