File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 71
71
name : Unit Tests (${{ matrix.os }})
72
72
os : ${{ matrix.os }}
73
73
cache-key : python-unit-test-${{ matrix.os }}
74
+ shell : bash
74
75
run : |
75
- if [[ "${{ runner.os }} " == "Windows" ] ]; then
76
+ if [ "$RUNNER_OS " == "Windows" ]; then
76
77
fsutil 8dot3name set 0
77
78
fi
78
79
bazel test //py:unit
@@ -118,8 +119,9 @@ jobs:
118
119
browser : ${{ matrix.browser }}
119
120
os : ${{ matrix.os }}
120
121
cache-key : py-browser-${{ matrix.browser }}
122
+ shell : bash
121
123
run : |
122
- if [[ "${{ runner.os }} " == "Windows" ] ]; then
124
+ if [ "$RUNNER_OS " == "Windows" ]; then
123
125
fsutil 8dot3name set 0
124
126
fi
125
127
bazel test --local_test_jobs 1 --flaky_test_attempts 3 --pin_browsers=true //py:common-${{ matrix.browser }}-bidi //py:test-${{ matrix.browser }}
You can’t perform that action at this time.
0 commit comments