Skip to content

Commit f135738

Browse files
committed
[py] Fix workflow syntax
1 parent 5c53f9a commit f135738

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/ci-python.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,7 @@ jobs:
126126
os: ${{ matrix.os }}
127127
cache-key: py-browser-${{ matrix.browser }}
128128
run: |
129-
bazel test --local_test_jobs 1 --flaky_test_attempts 3 --pin_browsers=true \
130-
//py:common-${{ matrix.browser }}-bidi \
131-
//py:test-${{ matrix.browser }}
129+
bazel test --local_test_jobs 1 --flaky_test_attempts 3 --pin_browsers=true //py:common-${{ matrix.browser }}-bidi //py:test-${{ matrix.browser }}
132130
133131
browser-tests-windows:
134132
name: Browser Tests
@@ -151,9 +149,7 @@ jobs:
151149
cache-key: py-browser-${{ matrix.browser }}
152150
run: |
153151
fsutil 8dot3name set 0
154-
bazel test --local_test_jobs 1 --flaky_test_attempts 3 --pin_browsers=true \
155-
//py:common-${{ matrix.browser }}-bidi \
156-
//py:test-${{ matrix.browser }}
152+
bazel test --local_test_jobs 1 --flaky_test_attempts 3 --pin_browsers=true //py:common-${{ matrix.browser }}-bidi //py:test-${{ matrix.browser }}
157153
158154
safari-tests:
159155
name: Browser Tests
@@ -171,6 +167,4 @@ jobs:
171167
os: ${{ matrix.os }}
172168
cache-key: py-browser-${{ matrix.browser }}
173169
run: |
174-
bazel test --local_test_jobs 1 --flaky_test_attempts 3 --pin_browsers=true \
175-
//py:common-${{ matrix.browser }} \
176-
//py:test-${{ matrix.browser }}
170+
bazel test --local_test_jobs 1 --flaky_test_attempts 3 --pin_browsers=true //py:common-${{ matrix.browser }} //py:test-${{ matrix.browser }}

0 commit comments

Comments
 (0)