We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b39272 commit 08ae1d3Copy full SHA for 08ae1d3
tests/conftest.py
@@ -1,5 +1,6 @@
1
import importlib
2
import json
3
+import os
4
import random
5
import tempfile
6
import warnings
@@ -60,7 +61,7 @@ def tmp_cache(monkeypatch):
60
61
monkeypatch.setenv("MARBLE_CACHE_DIR", tmp_dir)
62
importlib.reload(marble_client.constants)
63
importlib.reload(marble_client.client)
- yield tmp_dir
64
+ yield os.path.realpath(tmp_dir)
65
66
67
@pytest.fixture
0 commit comments