From ddef91ea1fbf0dc51e1150d1602f470853036f73 Mon Sep 17 00:00:00 2001 From: Valentin David Date: Mon, 21 Jan 2019 12:30:19 +0100 Subject: Make sure testing cache directory exists Fixes #873 --- conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conftest.py b/conftest.py index 6e6e3b08f..6fc24c2d6 100755 --- a/conftest.py +++ b/conftest.py @@ -54,6 +54,7 @@ class IntegrationCache(): def __init__(self, cache): cache = os.path.abspath(cache) + os.makedirs(cache, exist_ok=True) # Use the same sources every time self.sources = os.path.join(cache, 'sources') -- cgit v1.2.1