summary refs log tree commit diff stats
path: root/test/__init__.py
blob: 500d338315e0aabbb10a08e4cbf7efebf20de63b (plain) (blame)
1
2
3
4
5
6
7
8
import os, sys

__all__ = [ x[0:x.index('.')] \
		for x in os.listdir(os.path.dirname(__file__)) \
		if x.startswith('tc_') ]

def init():
	sys.path.append(os.path.abspath(os.path.join(sys.path[0], '..')))