Skip to content

Commit

Permalink
Bug 1871425 - Ignore errors when cleaning up old wpt virtualenv, r=ahal
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham committed Jan 4, 2024
1 parent c8599d8 commit 4626a0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/web-platform/tests/tools/wpt/virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def broken_link(self):

def create(self):
if os.path.exists(self.path):
shutil.rmtree(self.path)
shutil.rmtree(self.path, ignore_errors=True)
self._working_set = None
call(*self.virtualenv, self.path)

Expand Down

0 comments on commit 4626a0e

Please sign in to comment.