-
Notifications
You must be signed in to change notification settings - Fork 3.1k
chore: FIT-723: Investigate intermittent test failure #8470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
✅ Deploy Preview for label-studio-docs-new-theme canceled.
|
✅ Deploy Preview for heartex-docs canceled.
|
✅ Deploy Preview for label-studio-playground ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for label-studio-storybook ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Codecov Report✅ All modified and coverable lines are covered by tests.
Additional details and impacted files@@ Coverage Diff @@
## develop #8470 +/- ##
===========================================
- Coverage 66.73% 59.70% -7.04%
===========================================
Files 796 559 -237
Lines 60701 39237 -21464
Branches 10413 10413
===========================================
- Hits 40511 23427 -17084
+ Misses 20187 15807 -4380
Partials 3 3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
/fm sync |
…l-studio into fb-fit-723/test-failure
…o ci will run all tests inclduing flakey again
This pull request updates the handling of flaky end-to-end tests in the editor test suite. The main change is the introduction of a new tagging system for flaky tests, which allows them to be excluded from the CI pipeline automatically. This helps ensure more reliable CI runs by preventing known unstable tests from causing failures.
Test tagging and CI exclusion:
.tag("@flakey")
to several test scenarios inaudio-regions.test.js
andvideo-timeline-seek-indicator.test.js
to mark them as flaky. [1] [2] [3]lsf:e2e:ci
script inweb/package.json
to exclude tests tagged with@flakey
during CI runs using a--grep
filter.