-
Notifications
You must be signed in to change notification settings - Fork 6k
Skip the skwasm unit test suite on Safari since it is flaky. #37602
Skip the skwasm unit test suite on Safari since it is flaky. #37602
Conversation
It looks like this pull request may not have tests. Please make sure to add tests before merging. If you need an exemption to this rule, contact Hixie on the #hackers channel in Chat (don't just cc him here, he won't see it! He's on Discord!). If you are not sure if you need tests, consider this rule of thumb: the purpose of a test is to make sure someone doesn't accidentally revert the fix. Ask yourself, is there anything in your PR that you feel it is important we not accidentally revert back to how it was before your fix? Reviewers: Read the Tree Hygiene page and make sure this patch meets those guidelines before LGTMing. |
test-exempt: is a test |
@@ -100,7 +100,9 @@ class RunTestsStep implements PipelineStep { | |||
); | |||
} | |||
|
|||
if (sortedTests.skwasmTests.isNotEmpty) { | |||
// For some reason, Safari is flaky when running the Skwasm test suite | |||
// See https://github.com/flutter/flutter/issues/115312 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's make it a // TODO
so it is tracked by the tech debt tracker.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM after Yegor's suggestion to make it a TODO.
ad6b2d6
to
d352143
Compare
…115395) * 3a622e17a Skip the skwasm unit test suite on Safari since it is flaky. (flutter/engine#37602) * f1206f265 [web] Test harness fixes. (flutter/engine#37560) * c628e1f26 Roll Fuchsia Mac SDK from 32kfSm94FGtJJeUjg... to gKyvwhUS3r6pTRfxx... (flutter/engine#37634) * af6e47f1d Removing some builds from mac release builder. (flutter/engine#37556)
…#37602) * Skip the skwasm unit test suite on Safari since it is flaky. * Add TODO.
* clang-tidy: added the ability to shard jobs (#37265) * clang-tidy: added the ability to shard jobs * added test * jenn feedback * hack ci to run as a shard to measure the time * tweak * fix hack * zach feedback * zach feedback 2 * removed stray async * moved to using sets for lookups * fixed typo in docstring * Revert "fix hack" This reverts commit 06a61a6. Revert "tweak" This reverts commit e7c58b1. Revert "hack ci to run as a shard to measure the time" This reverts commit e458963. * removed calls to map * turned the ci hack back on * Revert "turned the ci hack back on" This reverts commit 0d53794. * removed sync* * Clang-tidy: Fixed math on shard-id validator. (#37433) Clang-tidy: Fixed math on shard-id validator. * Felt analyze (#37481) * Adding `felt analyze` command that CI will run. * Remove some copypasta'd stuff. * Also remove code path from felt.dart that forces a rebuild if it doesn't detect the host_debug_unopt directory. * More cleanup of felt.bat for CI. * Fix typo in felt.bat. * Run pub get before building host.dart. (#37502) * Run pub get before building host.dart. * We should call `pub get` for `web_ui` in the launcher script because felt itself needs it. However, we should let felt invoke `pub get` on `web_engine_tester` only as needed, not in the launcher script. * Skip the skwasm unit test suite on Safari since it is flaky. (#37602) * Skip the skwasm unit test suite on Safari since it is flaky. * Add TODO. * Remove felt snapshotting behavior. (#37639) * Remove felt snapshotting behavior. * Use `dart run`. * Combine results of all the test batches. (#37610) * Combine results of all the test batches. * Skip regressions * Use bool instead * remove unused var * skip fragment_program_test * Also skip GL context lost test * Transparent background test fails on Firefox and Safari * Skip other test in safari * Skip text test on firefox Co-authored-by: gaaclarke <[email protected]> Co-authored-by: Jackson Gardner <[email protected]> Co-authored-by: Harry Terkelsen <[email protected]>
…lutter#115395) * 3a622e17a Skip the skwasm unit test suite on Safari since it is flaky. (flutter/engine#37602) * f1206f265 [web] Test harness fixes. (flutter/engine#37560) * c628e1f26 Roll Fuchsia Mac SDK from 32kfSm94FGtJJeUjg... to gKyvwhUS3r6pTRfxx... (flutter/engine#37634) * af6e47f1d Removing some builds from mac release builder. (flutter/engine#37556)
…lutter#115395) * 3a622e17a Skip the skwasm unit test suite on Safari since it is flaky. (flutter/engine#37602) * f1206f265 [web] Test harness fixes. (flutter/engine#37560) * c628e1f26 Roll Fuchsia Mac SDK from 32kfSm94FGtJJeUjg... to gKyvwhUS3r6pTRfxx... (flutter/engine#37634) * af6e47f1d Removing some builds from mac release builder. (flutter/engine#37556)
We're having some periodic flakes of this part of the test suite on the Safari webdriver only. I suspect it has to do with only having a single unit test in the suite, but I'm not positive. Let's just disable this for now, I filed a follow-on issue for deeper investigation later: flutter/flutter#115312