#!/usr/bin/env python
#
# Run the tests for the postman package

import os, sys, unittest

try:
    from postman.tests import *
except ImportError:
    sys.path.append(os.path.join(os.path.dirname(__file__), '../'))
    try:
        from postman.tests import *
    except ImportError:
        raise SystemExit('Could not find postman on your filesystem')
    
unittest.main()
