-
Notifications
You must be signed in to change notification settings - Fork 94
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
fix(cy): avoid double upload to prevent lock error #6760
Conversation
`isolateTest` in `beforeEach` already uploads the file. Uploading it again in the `no actual conflict - just reload` case sometimes led to 423 - Locked responses. Use `cy.createTestDir()` instead and upload only once. Signed-off-by: Max <[email protected]>
https://github.com/nextcloud/text/actions/runs/12233069349/job/34124259796 is an example of a failing job. |
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.
Thanks so much for looking into this ❤️
Shall we backport to stable30 and stable29?
/backport to stable30 |
This is stable29 😉 I'll trigger backports to main and stable28. |
/backport to main |
/backport to stable28 |
isolateTest
inbeforeEach
already uploads the file.Uploading it again in the
no actual conflict - just reload
casesometimes led to 423 - Locked responses.
Use
cy.createTestDir()
instead and upload only once.Signed-off-by: Max [email protected]