Work around this bug: https://github.com/python/cpython/pull/14064
All checks were successful
Lint Checks / Run linter (pull_request) Successful in 43s
Webapp Test / Run webapp test suite (pull_request) Successful in 5m10s
Smoke Test / Run basic test suite (pull_request) Successful in 4m46s
Deploy Test / Run deploy test suite (pull_request) Successful in 5m34s
K8s Deployment Control Test / Run deployment control suite on kind/k8s (pull_request) Successful in 7m52s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 9m38s

This commit is contained in:
Thomas E Lackey 2024-08-28 18:10:52 -05:00
parent a54072de6c
commit e4138211fe
2 changed files with 2 additions and 2 deletions

View File

@ -668,4 +668,4 @@ def command( # noqa: C901
main_logger.log("UNCAUGHT ERROR:" + str(e))
raise e
finally:
shutil.rmtree(tempdir)
shutil.rmtree(tempdir, ignore_errors=True)

View File

@ -172,4 +172,4 @@ def command(
# Send the request
laconic.publish(deployment_request)
finally:
shutil.rmtree(tempdir)
shutil.rmtree(tempdir, ignore_errors=True)