5 tests = ["dagtests", "searchtests", "shelftests", "test_iodict"]
8 libdir = unicode(os.path.realpath(
9 os.path.join(os.path.dirname(sys.argv[0]), "..", "packages")))
11 sys.path.insert(0, libdir)
14 alltests = unittest.TestSuite()
15 for module in [__import__(x) for x in tests]:
16 alltests.addTest(unittest.findTestCases(module))
19 if __name__ == "__main__":
20 unittest.main(defaultTest="suite")