@@ -16,7 +16,7 @@ def compose_yaml_path(suffix=""):
16
16
class TestComposeBaseDeps (unittest .TestCase , RunSubprocessMixin ):
17
17
def test_deps (self ):
18
18
try :
19
- output , error = self .run_subprocess_assert_returncode ([
19
+ output , _ = self .run_subprocess_assert_returncode ([
20
20
podman_compose_path (),
21
21
"-f" ,
22
22
compose_yaml_path (),
@@ -39,7 +39,7 @@ def test_deps(self):
39
39
40
40
def test_run_nodeps (self ):
41
41
try :
42
- output , error = self .run_subprocess_assert_returncode ([
42
+ output , _ = self .run_subprocess_assert_returncode ([
43
43
podman_compose_path (),
44
44
"-f" ,
45
45
compose_yaml_path (),
@@ -73,7 +73,7 @@ def test_up_nodeps(self):
73
73
"--detach" ,
74
74
"sleep" ,
75
75
])
76
- output , error = self .run_subprocess_assert_returncode ([
76
+ output , _ = self .run_subprocess_assert_returncode ([
77
77
podman_compose_path (),
78
78
"-f" ,
79
79
compose_yaml_path (),
@@ -146,7 +146,7 @@ class TestComposeConditionalDeps(unittest.TestCase, RunSubprocessMixin):
146
146
def test_deps_succeeds (self ):
147
147
suffix = "-conditional-succeeds"
148
148
try :
149
- output , error = self .run_subprocess_assert_returncode ([
149
+ output , _ = self .run_subprocess_assert_returncode ([
150
150
podman_compose_path (),
151
151
"-f" ,
152
152
compose_yaml_path (suffix ),
@@ -170,7 +170,7 @@ def test_deps_succeeds(self):
170
170
def test_deps_fails (self ):
171
171
suffix = "-conditional-fails"
172
172
try :
173
- output , error = self .run_subprocess_assert_returncode ([
173
+ output , _ = self .run_subprocess_assert_returncode ([
174
174
podman_compose_path (),
175
175
"-f" ,
176
176
compose_yaml_path (suffix ),
0 commit comments