Skip to content

Commit

Permalink
Add test to test_suite
Browse files Browse the repository at this point in the history
  • Loading branch information
liord committed Jan 5, 2025
1 parent 1d72b7b commit 7a7a4ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
from tests.common_tests.function_tests.test_resource_utilization_object import TestResourceUtilizationObject
from tests.common_tests.function_tests.test_threshold_selection import TestThresholdSelection
from tests.common_tests.test_doc_examples import TestCommonDocsExamples
from tests.common_tests.test_tp_model import TargetPlatformModelingTest, OpsetTest, QCOptionsTest, FusingTest
from tests.common_tests.test_tp_model import TargetPlatformModelingTest, OpsetTest, QCOptionsTest, FusingTest, \
TPModelInputOutputTests

found_tf = importlib.util.find_spec("tensorflow") is not None
if found_tf:
Expand Down Expand Up @@ -116,6 +117,7 @@
suiteList.append(unittest.TestLoader().loadTestsFromTestCase(TestHistogramCollector))
suiteList.append(unittest.TestLoader().loadTestsFromTestCase(TestCollectorsManipulations))
suiteList.append(unittest.TestLoader().loadTestsFromTestCase(TestThresholdSelection))
suiteList.append(unittest.TestLoader().loadTestsFromTestCase(TPModelInputOutputTests))
suiteList.append(unittest.TestLoader().loadTestsFromTestCase(TargetPlatformModelingTest))
suiteList.append(unittest.TestLoader().loadTestsFromTestCase(OpsetTest))
suiteList.append(unittest.TestLoader().loadTestsFromTestCase(QCOptionsTest))
Expand Down

0 comments on commit 7a7a4ec

Please sign in to comment.