"""Put the gateway dir on sys.path so tests can ``import main`` / ``import brain``
regardless of where pytest is invoked from."""
import os
import sys

sys.path.insert(0, os.path.dirname(__file__))
