Ignore cleanup errors.

This is caused by subdirectories being owned by root.
This commit is contained in:
Brad Warren 2017-07-25 17:03:18 -07:00
parent f0962035d5
commit afc16afa1e

View file

@ -124,7 +124,7 @@ def test_dirs():
try:
yield join(dir, 'letsencrypt-auto'), join(dir, 'venv')
finally:
rmtree(dir)
rmtree(dir, ignore_errors=True)
def out_and_err(command, input=None, shell=False, env=None):