Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/web_ui/dev/steps/copy_artifacts_step.dart
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@ class CopyArtifactsStep implements PipelineStep {
));

for (final io.File imageFile in testImagesDir.listSync(recursive: true).whereType<io.File>()) {
// Skip files that are used by Skia to test handling of invalid input.
if (pathlib.basename(imageFile.path).contains("invalid")) {
continue;
}
final io.File destination = io.File(pathlib.join(
environment.webTestsArtifactsDir.path,
'test_images',
Expand Down