Closed lrebscher closed 4 years ago
@NicolasHug would be glad if you could review the PR :)
@NicolasHug (thx @lrebscher), can we move forward on that one since it is disturbing a lot our build process...
Thanks for the PR @lrebscher
@lrebscher @NicolasHug thanks for your time, is it possible to get a v1.1.1 in the mix? ;)
I released 1.1.1
I released 1.1.1
Thanks @NicolasHug !
I did not use
os.makedirs(folder, exist_ok=True)
asexist_ok
is only available with Python 3.4+. Implemented solution works for both Python 3.x and Python 2.7 (https://stackoverflow.com/a/42545343).Exceptions due to race condition are not deterministic, thus I did not write a test for it. However, existing tests cover the code changes and pass. Also, the
FileExistsError
does not occur in my setup anymore.