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

try:
	from testsuite.pyunit.libghdl import Initialize
except ModuleNotFoundError:
	from pyunit.libghdl import Initialize

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

	suite.addTests(loader.loadTestsFromModule(Initialize))

	return suite