Skip to content

Commit bee8d3b

Browse files
authored
Disable venv tests on windows (#17143)
* Disable venv tests on windows * Disable in PR check for windows as well.
1 parent 79e819d commit bee8d3b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ jobs:
290290
with:
291291
run: npm run testSingleWorkspace
292292
working-directory: ${{env.special-working-directory}}
293-
if: matrix.test-suite == 'venv'
293+
if: matrix.test-suite == 'venv' && matrix.os == 'ubuntu-latest'
294294

295295
- name: Run single-workspace tests
296296
env:

.github/workflows/pr-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ jobs:
271271
with:
272272
run: npm run testSingleWorkspace
273273
working-directory: ${{env.special-working-directory}}
274-
if: matrix.test-suite == 'venv'
274+
if: matrix.test-suite == 'venv' && matrix.os == 'ubuntu-latest'
275275

276276
- name: Run single-workspace tests
277277
env:

0 commit comments

Comments
 (0)