aai-institute / pyDVL

pyDVL is a library of stable implementations of algorithms for data valuation and influence function computation
https://pydvl.org
GNU Lesser General Public License v3.0
100 stars 8 forks source link

Fix pytest xdist #444

Closed mdbenito closed 12 months ago

mdbenito commented 1 year ago

Description

This PR closes fixes a problem with xdist and CI like this one, whereby each xdist worker tries to start a new memcached docker service. This happens even with only one worker whenever it is restarted (for some reason, running parallel tests within xdist workers leads to segfaults in some python versions)

Changes

I also sneaked in a change in test scheduling for xdist to use worksteal: workers grab tests from other workers' queues if they can.

Checklist