aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/libghdl/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/pyunit/libghdl/__init__.py')
-rw-r--r--testsuite/pyunit/libghdl/__init__.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/testsuite/pyunit/libghdl/__init__.py b/testsuite/pyunit/libghdl/__init__.py
index 4aeab3ec3..e69de29bb 100644
--- a/testsuite/pyunit/libghdl/__init__.py
+++ b/testsuite/pyunit/libghdl/__init__.py
@@ -1,13 +0,0 @@
-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