-
Notifications
You must be signed in to change notification settings - Fork 59
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 DaskWorker: AttributeError: 'tuple' object has no attribute '_run'
#673
Conversation
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## master #673 +/- ##
==========================================
- Coverage 82.88% 82.77% -0.11%
==========================================
Files 22 22
Lines 4845 4849 +4
Branches 1391 0 -1391
==========================================
- Hits 4016 4014 -2
- Misses 825 835 +10
+ Partials 4 0 -4
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
@adi611 - thank you for this change, but I understand that dask is still not tested in CI, so we should add it and fix the tests |
@djarecka - I tried running the tests after commenting the test |
we still have to understand why this specific test is failing |
The tests This also indicates that all the Dask tests pass for Python versions |
for some reason i'm having problems with seeing reports from the tests right now..:( What do you mean this tests are not dask tests, I'm guessing that since it only happens with the "dask" run, some tests are stuck when running the dask plugin, am I right? Do they have a reasonable running time on google collab? |
Sorry for the confusion. The tests Moreover these tests are passing on Google Colab, as can be seen here: github gist for python 3.10, github gist for python 3.9. |
@adi611 - it looks like the change in timeout didn't help, and I actually check one of the GA report (for 3.9), and I can see that there is an issue with another test, with Are you really able to run without any issues this test locally? |
@djarecka - The test Even though the results appear to be inconsistent across platforms, running the test files individually does not result to any error in any platform. I have created a new GA workflow to verify the same. This will be helpful in understanding the cause of the problem. |
ok, thank you. I've approved the workflows, so should run now |
for more information, see https://pre-commit.ci
…outer_wf_duplicate
17d28bc
to
f0fc433
Compare
Superseded by #686 |
Types of changes
Summary
This is a fix to DaskWorker which previously failed on some tests with the following error:
AttributeError: 'tuple' object has no attribute '_run'
. (Refer discussion #665).Checklist