#!/usr/bin/env python3
#

""" run tests. """

__copyright__ =  "Copyright 2015, B.H.J. Thate"

## BOOT

import os,sys

sys.path.insert(0,os.getcwd())

## IMPORTS

import unittest
import sys
import os

## RUNTIME

test_path = os.getcwd() + os.sep + "proeven"
suite = unittest.loader.TestLoader().discover(test_path, pattern="proef*.py")
unittest.TextTestRunner(verbosity=3).run(suite)
