-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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 ASV imports #23085
Fix ASV imports #23085
Conversation
Hello @h-vetinari! Thanks for submitting the PR.
|
Codecov Report
@@ Coverage Diff @@
## master #23085 +/- ##
=======================================
Coverage 92.19% 92.19%
=======================================
Files 169 169
Lines 50911 50911
=======================================
Hits 46939 46939
Misses 3972 3972
Continue to review full report at Codecov.
|
Thanks! |
In theory the previous changes were tested. I think we need to add |
@datapythonista you may want to start by seeing if this script that checks for failed asv benchmarks can run on Azure. We tried running it on travis but it would timeout. https://github.com/pandas-dev/pandas-ci/blob/master/ci/asv.sh |
Thanks @mroeschke, I didn't know about that script. I see one problem is that |
Yeah it's a bit fragile in that it just greps for "failed" from the |
@h-vetinari @mroeschke since #22854 we do a dry-run of the benchmarks to test that nothing is broken in the CI. We do it only if something in the benchmarks directory has changed, as it takes too long to do it for every PR/commit. I'm using the same grep, couldn't find a better way. |
@datapythonista Cool, thanks for that! |
#22947 broke the ASV - second time in a few days that linting the benchmarks has broken something (see #22978 / #22886)
@datapythonista, could you please require that PRs try
to see if collection of benchmark works? This takes about 30 seconds and then the asv run can be aborted with CTRL+C.