Limit repository creation to one process

This commit is contained in:
Anthony Sottile 2017-08-23 17:24:49 -07:00
parent bba711f468
commit 625aaf54aa
6 changed files with 133 additions and 46 deletions

View file

@ -88,7 +88,7 @@ def test_clone(store, tempdir_factory, log_info_mock):
ret = store.clone(path, sha)
# Should have printed some stuff
assert log_info_mock.call_args_list[0][0][0].startswith(
assert log_info_mock.call_args_list[1][0][0].startswith(
'Initializing environment for ',
)