aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/__init__.py
blob: b73f051d4e60119e4e92d03611b68dd90c60e188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from unittest import TestSuite

from testsuite.pyunit import libghdl, dom


def load_tests(loader, testCases, pattern):
	suite = TestSuite()

	suite.addTests(loader.loadTestsFromModule(libghdl))
	suite.addTests(loader.loadTestsFromModule(dom))

	return suite