Skip to content

Commit 5492605

Browse files
clavinpull[bot]
authored andcommitted
test: enable CircleCI's "re-run failed tests only" feature (#38178)
* test: enable CircleCI rerun failed *tests* only * . * . * console.log never fails 🤷 * normalize the filtered paths circleci gives us a list of absolute paths here * remove test output check sometimes rerunning only failed tests results in some runners having no tests to run, and thus no output * keep relative paths the same * error for when no tests match * cleanup * .
1 parent e2184f1 commit 5492605

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

.circleci/config/base.yml

+3-12
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ step-get-more-space-on-mac: &step-get-more-space-on-mac
452452
fi
453453
background: true
454454

455-
# On macOS delete all .git directories under src/ expect for
455+
# On macOS delete all .git directories under src/ except for
456456
# third_party/angle/ and third_party/dawn/ because of build time generation of files
457457
# gen/angle/commit.h depends on third_party/angle/.git/HEAD
458458
# https://chromium-review.googlesource.com/c/angle/angle/+/2074924
@@ -1492,7 +1492,7 @@ commands:
14921492
export LLVM_SYMBOLIZER_PATH=$PWD/third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer
14931493
export MOCHA_TIMEOUT=180000
14941494
echo "Piping output to ASAN_SYMBOLIZE ($ASAN_SYMBOLIZE)"
1495-
(cd electron && node script/yarn test --runners=main --trace-uncaught --enable-logging --files $(circleci tests glob spec/*-spec.ts | circleci tests split --split-by=timings)) 2>&1 | $ASAN_SYMBOLIZE
1495+
(cd electron && (circleci tests glob "spec/*-spec.ts" | circleci tests run --command="xargs node script/yarn test --runners=main --trace-uncaught --enable-logging --files" --split-by=timings 2>&1)) | $ASAN_SYMBOLIZE
14961496
else
14971497
if [ "$TARGET_ARCH" == "arm" ] || [ "$TARGET_ARCH" == "arm64" ]; then
14981498
export ELECTRON_SKIP_NATIVE_MODULE_TESTS=true
@@ -1501,18 +1501,9 @@ commands:
15011501
if [ "$TARGET_ARCH" == "ia32" ]; then
15021502
npm_config_arch=x64 node electron/node_modules/dugite/script/download-git.js
15031503
fi
1504-
(cd electron && node script/yarn test --runners=main --trace-uncaught --enable-logging --files $(circleci tests glob spec/*-spec.ts | circleci tests split --split-by=timings))
1504+
(cd electron && (circleci tests glob "spec/*-spec.ts" | circleci tests run --command="xargs node script/yarn test --runners=main --trace-uncaught --enable-logging --files" --split-by=timings))
15051505
fi
15061506
fi
1507-
- run:
1508-
name: Check test results existence
1509-
command: |
1510-
cd src
1511-
1512-
# Check if test results exist and are not empty.
1513-
if [ ! -s "junit/test-results-main.xml" ]; then
1514-
exit 1
1515-
fi
15161507
- store_test_results:
15171508
path: src/junit
15181509

spec/index.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,11 @@ app.whenReady().then(async () => {
107107
if (argv.grep) mocha.grep(argv.grep);
108108
if (argv.invert) mocha.invert();
109109

110+
const baseElectronDir = path.resolve(__dirname, '..');
111+
const validTestPaths = argv.files && argv.files.map(file =>
112+
path.isAbsolute(file)
113+
? path.relative(baseElectronDir, file)
114+
: file);
110115
const filter = (file) => {
111116
if (!/-spec\.[tj]s$/.test(file)) {
112117
return false;
@@ -121,8 +126,7 @@ app.whenReady().then(async () => {
121126
return false;
122127
}
123128

124-
const baseElectronDir = path.resolve(__dirname, '..');
125-
if (argv.files && !argv.files.includes(path.relative(baseElectronDir, file))) {
129+
if (validTestPaths && !validTestPaths.includes(path.relative(baseElectronDir, file))) {
126130
return false;
127131
}
128132

@@ -135,6 +139,12 @@ app.whenReady().then(async () => {
135139
mocha.addFile(file);
136140
});
137141

142+
if (validTestPaths && validTestPaths.length > 0 && testFiles.length === 0) {
143+
console.error('Test files were provided, but they did not match any searched files');
144+
console.error('provided file paths (relative to electron/):', validTestPaths);
145+
process.exit(1);
146+
}
147+
138148
const cb = () => {
139149
// Ensure the callback is called after runner is defined
140150
process.nextTick(() => {

0 commit comments

Comments
 (0)