Ensure mock configuration directory is cleaned up on session exit. (#11700)
This commit is contained in:
parent
e275ddc169
commit
1b8f641016
@ -293,7 +293,10 @@ def configuration_dir(tmpdir_factory, linux_os):
|
|||||||
content = ''.join(compilers_yaml.read()).format(linux_os)
|
content = ''.join(compilers_yaml.read()).format(linux_os)
|
||||||
t = tmpdir.join('site', 'compilers.yaml')
|
t = tmpdir.join('site', 'compilers.yaml')
|
||||||
t.write(content)
|
t.write(content)
|
||||||
return tmpdir
|
yield tmpdir
|
||||||
|
|
||||||
|
# Once done, cleanup the directory
|
||||||
|
shutil.rmtree(str(tmpdir))
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope='module')
|
@pytest.fixture(scope='module')
|
||||||
|
Loading…
Reference in New Issue
Block a user