Skip to content

Commit 33a9612

Browse files
committed
[ci] Filter slow_test tag for FPGA tests
Signed-off-by: James Wainwright <[email protected]>
1 parent d29f60e commit 33a9612

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ jobs:
654654
if: success() || failure()
655655
run: |
656656
# Find and display tests that did not run:
657-
./ci/scripts/run-bazel-test-query.sh all_fpga.txt fpga,-manual,-broken,-skip_in_ci //... @manufacturer_test_hooks//...
657+
./ci/scripts/run-bazel-test-query.sh all_fpga.txt fpga,-manual,-broken,-slow_test,-skip_in_ci //... @manufacturer_test_hooks//...
658658
sort -o all_fpga.txt all_fpga.txt
659659
pattern_files=$(find verify_fpga_jobs -name target_pattern_file.txt)
660660
sort $pattern_files > all_run.txt

.github/workflows/fpga.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ on:
4040
add_default_filters:
4141
default: true
4242
type: boolean
43-
description: Include additional test filters for "manual", "broken", and "skip_in_ci" tests.
43+
description: Include additional test filters for "manual", "broken", "slow_test", and "skip_in_ci" tests.
4444
cache_test_results:
4545
default: true
4646
type: boolean
@@ -78,7 +78,7 @@ jobs:
7878
7979
tag_filters="${{ inputs.tag_filters }}"
8080
if ${{ inputs.add_default_filters }}; then
81-
tag_filters+=",-manual,-broken,-skip_in_ci"
81+
tag_filters+=",-manual,-broken,-slow_test,-skip_in_ci"
8282
fi
8383
8484
# Execute a query to find all targets that match the test tags and store them in a file.

0 commit comments

Comments
 (0)