We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a48c6ef commit 0e57eceCopy full SHA for 0e57ece
tests/conftest.py
@@ -0,0 +1,8 @@
1
+from __future__ import annotations
2
+
3
+import sys
4
+from pathlib import Path
5
6
+ROOT = Path(__file__).resolve().parents[1]
7
+if str(ROOT) not in sys.path:
8
+ sys.path.insert(0, str(ROOT))
0 commit comments