Skip to content

Commit

Permalink
remove test cruft
Browse files Browse the repository at this point in the history
  • Loading branch information
parejkoj committed Feb 14, 2024
1 parent a67d65f commit ada5ace
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 24 deletions.
6 changes: 0 additions & 6 deletions tests/test_pipeTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")])
Expand Down
12 changes: 0 additions & 12 deletions tests/test_pipelineIR.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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 = """
Expand Down
6 changes: 0 additions & 6 deletions tests/test_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit ada5ace

Please sign in to comment.