File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
common --enable_platform_specific_config
2
2
build --verbose_failures
3
3
build --build_tag_filters=-off-by-default
4
- test --test_tag_filters=-off-by-default
4
+ test --test_tag_filters=-off-by-default,-slow
5
+
6
+ test:enable-slow-tests --test_tag_filters=-off-by-default
5
7
6
8
# Not using bzlmod for dependencies yet
7
9
common --noenable_bzlmod
Original file line number Diff line number Diff line change @@ -128,15 +128,15 @@ jobs:
128
128
build:asan --config=limit-storage
129
129
build:debug --config=limit-storage
130
130
EOF
131
- - name : Disable slow tests if applicable
131
+ - name : Enable slow tests if applicable
132
132
# Some tests (like Python import tests) take a long time to run and don't benefit much
133
133
# from multi-platform testing. For that reason, we only run them in a single configuration
134
134
# to minimize effect on CI pipeline runtime.
135
- if : matrix.os.name != 'linux' || matrix.config.suffix != ''
135
+ if : matrix.os.name == 'linux' && matrix.config.suffix != ''
136
136
shell : bash
137
137
run : |
138
138
cat <<EOF >> .bazelrc
139
- test --test_tag_filters= -slow,-off-by-default
139
+ test --config=enable -slow-tests
140
140
EOF
141
141
- name : Configure git hooks
142
142
# Configure git to quell an irrelevant warning for runners (they never commit / push).
You can’t perform that action at this time.
0 commit comments