Fixed pymod/pya tests.

This commit is contained in:
Matthias Koefferlein 2018-11-18 23:19:58 +01:00
parent a36cf6a2e5
commit 89b5cae669
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
import sys
import os
import unittest
sys.path.append(os.path.join(os.path.dirname(__file__), "..", "python"))
@ -20,7 +21,7 @@ import dbTransTest
if __name__ == '__main__':
suite = unittest.TestLoader().loadTestsFromTestCase(tlTest.TLTest)
suite = unittest.TestLoader().loadTestsFromTestCase(dbPCells.DBPCellTests)
suite = unittest.TestLoader().loadTestsFromTestCase(dbLayoutTest.DBLayoutTests)
suite = unittest.TestLoader().loadTestsFromTestCase(dbLayoutTest.DBLayoutTest)
suite = unittest.TestLoader().loadTestsFromTestCase(dbPolygonTest.DBPolygonTests)
suite = unittest.TestLoader().loadTestsFromTestCase(dbReaders.DBReadersTests)
suite = unittest.TestLoader().loadTestsFromTestCase(dbRegionTest.DBRegionTest)