We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6bc0e5 commit 1c65d7bCopy full SHA for 1c65d7b
1 file changed
smoketests/tests/replication.py
@@ -219,6 +219,11 @@ def setUpClass(cls):
219
super().setUpClass()
220
cls.root_config = cls.project_path / "root_config"
221
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
+
227
def __init__(self, *args, **kwargs):
228
super().__init__(*args, **kwargs)
229
0 commit comments