-
Notifications
You must be signed in to change notification settings - Fork 2
Schould tests in this repo run on a cron job? #12
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
Comments
This would be good to have (also to allow you to see recent test logs) |
I find it also suspicious that the tests actually passed in September. Anything converting a dataframe with column of strings to pandas (eg vaex to pandas) should have failed until recently (pandas-dev/pandas#50565). And it seems that string column should normally be covered in the roundtrip tests. |
My biggest de-motivator here was that these nightly pandas builds suddenly weren't actually nightly at the end of last year. I spent some time exploring this to no avail, will have another go though. Just didn't want these long build times affecting normal CI, so maybe I can leave a cron job to use a different workflow which builds everything, given vaex doesn't have nightly builds anyway.
There are quite a few xfails (and skips when flaky), including vaex-to-pandas. I could probably highlight this in the README. Do need to update this now. dataframe-interchange-tests/tests/conftest.py Lines 41 to 78 in 8c1fc08
Also generally some dtypes are disabled as they're known to be erroneous in dataframe-interchange-tests/tests/wrappers.py Lines 328 to 333 in 8c1fc08
|
Hmm, so basically since there is only a single roundtrip test, the full roundtrip tests are skipped for many combinations. I suppose ideally we would only skip certain data types in the roundtrip, given the exact orig/dest library, but still run the test itself? |
Yep!
vaex has a few bugs which prevents tests (inc. the roundtrips) from passing beyond just a lack of dtype support. I think that goes the same for the other adopters, but yeah definitely need to revisit this + add a cron job. |
It would probably be nice to have these tests run once a week, in case a new release of a dataframe library happens. Not urgent, but perhaps useful. It should be a matter of adding something like this to the existing
.github/workflows/test.yml
:The text was updated successfully, but these errors were encountered: