Skip to content
Snippets Groups Projects
Commit a91e494f authored by Philip ABBET's avatar Philip ABBET
Browse files

[bugfix] Ensure the /tmp directory is used by the tests

On OS X, another one was used, that can't be mounted inside a Docker container
parent e86422f2
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ import pkg_resources ...@@ -35,7 +35,7 @@ import pkg_resources
prefix = pkg_resources.resource_filename(__name__, 'prefix') prefix = pkg_resources.resource_filename(__name__, 'prefix')
tmp_prefix = tempfile.mkdtemp(prefix=__name__, suffix='.tmpdir') tmp_prefix = tempfile.mkdtemp(prefix=__name__, suffix='.tmpdir', dir='/tmp')
def teardown_package(): def teardown_package():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment