6 lines
177 B
Python
6 lines
177 B
Python
|
|
# Tests package
|
||
|
|
import os
|
||
|
|
import sys
|
||
|
|
|
||
|
|
# allow `import src` from the repo root during test runs
|
||
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
|