From 56002e5e41fa384607edcc36f82c694eb289d55c Mon Sep 17 00:00:00 2001 From: John Parejko Date: Thu, 8 Feb 2024 22:11:38 -0800 Subject: [PATCH] remove test cruft --- tests/test_pipeTools.py | 6 ------ tests/test_pipelineIR.py | 12 ------------ tests/test_task.py | 6 ------ 3 files changed, 24 deletions(-) diff --git a/tests/test_pipeTools.py b/tests/test_pipeTools.py index be3274645..a10768440 100644 --- a/tests/test_pipeTools.py +++ b/tests/test_pipeTools.py @@ -122,12 +122,6 @@ def _makePipeline(tasks): class PipelineToolsTestCase(unittest.TestCase): """A test case for pipelineTools.""" - def setUp(self): - pass - - def tearDown(self): - pass - def testIsOrdered(self): """Tests for pipeTools.isPipelineOrdered method.""" pipeline = _makePipeline([("A", "B", "task1"), ("B", "C", "task2")]) diff --git a/tests/test_pipelineIR.py b/tests/test_pipelineIR.py index b9323e4c8..36c321135 100644 --- a/tests/test_pipelineIR.py +++ b/tests/test_pipelineIR.py @@ -44,12 +44,6 @@ class ConfigIRTestCase(unittest.TestCase): so it should be tested here. """ - def setUp(self): - pass - - def tearDown(self): - pass - def testMergeConfig(self): # Create some configs to merge config1 = ConfigIR( @@ -84,12 +78,6 @@ def testMergeConfig(self): class PipelineIRTestCase(unittest.TestCase): """A test case for PipelineIR objects.""" - def setUp(self): - pass - - def tearDown(self): - pass - def testPipelineIRInitChecks(self): # Missing description pipeline_str = """ diff --git a/tests/test_task.py b/tests/test_task.py index 6d8db44af..c767cb8a0 100644 --- a/tests/test_task.py +++ b/tests/test_task.py @@ -139,12 +139,6 @@ def run(self, val): class TaskTestCase(unittest.TestCase): """A test case for Task.""" - def setUp(self): - self.valDict = dict() - - def tearDown(self): - self.valDict = None - def testBasics(self): """Test basic construction and use of a task.""" for addend in (1.1, -3.5):