mirror of
https://github.com/Floriansylvain/FDJ-SLAYER.git
synced 2026-08-19 19:53:19 +02:00
8 lines
191 B
Python
8 lines
191 B
Python
"""
|
|
Add the parent directory to the sys.path so the tests can import the modules from the parent dir.
|
|
"""
|
|
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
|