Commit fece4657 authored by Martin Claus's avatar Martin Claus
Browse files

Added basic context for testing

parent 4dc2e879
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,3 +2,4 @@ __pycache__
build
dist
namelist.egg-info
*.pyc

tests/context.py

0 → 100644
+13 −0
Original line number Diff line number Diff line
"""Context for tests."""

import os
import sys
sys.path.insert(
    0,
    os.path.abspath(
        os.path.join(os.path.dirname(__file__), '..')
    )
)


import namelist