You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With several processes running (external) tests, if not os.path.exists(self.cache_location): can return True while the dir is being made, leading to a crash on the following line. Instead, use os.makedirs(self.cache_location, exist_ok=True)
With several processes running (external) tests,
if not os.path.exists(self.cache_location):can returnTruewhile the dir is being made, leading to a crash on the following line. Instead, useos.makedirs(self.cache_location, exist_ok=True)