zivid / zivid-python

Official Python package for Zivid 3D cameras
BSD 3-Clause "New" or "Revised" License
40 stars 14 forks source link

Fix flakiness in Windows CI workflow setup #262

Closed johningve closed 4 months ago

johningve commented 4 months ago

Windows CI workflows have been failing due to a failure to clean up temporary directories. This commit adds a workaround that ignores these errors.

When we in the future are able to use Python 3.10 features, we can pass ignore_cleanup_errors=True to tempfile.TemporaryDirectory() instead.