We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02552cc commit 6a25345Copy full SHA for 6a25345
1 file changed
.github/workflows/ci-python.yml
@@ -71,8 +71,9 @@ jobs:
71
name: Unit Tests (${{ matrix.os }})
72
os: ${{ matrix.os }}
73
cache-key: python-unit-test-${{ matrix.os }}
74
+ shell: bash
75
run: |
- if [[ "${{ runner.os }}" == "Windows" ]]; then
76
+ if [ "$RUNNER_OS" == "Windows" ]; then
77
fsutil 8dot3name set 0
78
fi
79
bazel test //py:unit
@@ -118,8 +119,9 @@ jobs:
118
119
browser: ${{ matrix.browser }}
120
121
cache-key: py-browser-${{ matrix.browser }}
122
123
124
125
126
127
bazel test --local_test_jobs 1 --flaky_test_attempts 3 --pin_browsers=true //py:common-${{ matrix.browser }}-bidi //py:test-${{ matrix.browser }}
0 commit comments