Skip to content
Snippets Groups Projects
Commit cba7f2e7 authored by Valentin David's avatar Valentin David Committed by Valentin David
Browse files

Make sure testing cache directory exists

Fixes #873
parent 528e8ed7
No related branches found
No related tags found
Loading
Pipeline #44481980 passed
......@@ -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')
......
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