eval: Do not create run files for skipped examples (#28800)

Release Notes:

- N/A
This commit is contained in:
Agus Zubiaga 2025-04-15 12:00:04 -06:00 committed by GitHub
parent 6f6e207eb5
commit 0182e09e33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 21 additions and 8 deletions

View file

@ -199,7 +199,7 @@ fn main() {
future::join_all(clone_tasks).await;
for example in examples.iter() {
for example in examples.iter_mut() {
example.setup().await?;
}