Skip to content

Commit 1c65d7b

Browse files
authored
smoketests: Bring containers back up in tear down of replication tests (#2818)
1 parent a6bc0e5 commit 1c65d7b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

smoketests/tests/replication.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,11 @@ def setUpClass(cls):
219219
super().setUpClass()
220220
cls.root_config = cls.project_path / "root_config"
221221

222+
def tearDown(self):
223+
# Ensure containers that were brought down during a test are back up.
224+
self.docker.compose("up", "-d")
225+
super().tearDown()
226+
222227
def __init__(self, *args, **kwargs):
223228
super().__init__(*args, **kwargs)
224229

0 commit comments

Comments
 (0)