File size: 297 Bytes
f9609df | 1 2 3 4 5 6 7 8 | import sys
import os
# auth.py/participants.py/analysis.py live at the project root, not in a
# package -- this is the one place that needs to know that, instead of
# every test file repeating its own sys.path hack.
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|