-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Adding third container for jasmine tests to avoid flaky fails #3599
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
Have you tried re-running the tests a few times to see if it actually helps? |
Good call. It quickly passed the very first time; but then I see it may not pass. |
.circleci/test.sh
Outdated
SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --tag=flaky)) | ||
|
||
for s in ${SHARDS[@]}; do | ||
retry npm run test-jasmine -- --tags=flaky --skip-tags=noCI |
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.
This line should be:
retry npm run test-jasmine -- "$s" --tags=flaky --skip-tags=noCI
Any updates on this thing? Even if the tests in |
Yes. I think it is ready to go. |
💃 |
Looks good to me 💃 |
Fixes #3587.
@plotly/plotly_js