Skip to content

Commit 72a39d2

Browse files
committed
wip!
1 parent ce07c76 commit 72a39d2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/pr.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ jobs:
128128
run: pnpm bazel test --test_env=E2E_SHARD_TOTAL=6 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
129129

130130
e2e-windows-subset:
131-
needs: build
132131
runs-on: windows-2025
133132
steps:
134133
- name: Initialize environment

scripts/windows-testing/parallel-executor.mjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import * as child_process from 'node:child_process';
1010
import path from 'node:path';
11+
import { readdirSync } from 'node:fs';
1112
import { stripVTControlCharacters } from 'node:util';
1213

1314
const initialStatusRegex = /Running (\d+) tests/;
@@ -21,6 +22,12 @@ async function main() {
2122
const tasks = [];
2223
const progress = {};
2324

25+
console.log('---');
26+
27+
console.log('---');
28+
readdirSync(testWorkingDir).forEach((file) => {
29+
console.log(file);
30+
});
2431
console.log('---');
2532
console.warn({
2633
targetName,

0 commit comments

Comments
 (0)