summaryrefslogtreecommitdiffstats
path: root/test/__init__.py
blob: 8865d55262936183dae29d90fc1f7b985e83d691 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- coding: utf-8 -*-
"""Add the top-level module to the PYTHONPATH."""

__author__ = 'Diego Elio Pettenò'
__email__ = 'flameeyes@flameeyes.eu'
__copyright__ = 'Copyright © 2018, Diego Elio Pettenò'
__license__ = 'MIT'

import os
import sys

sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))