diff --git a/tests/integration/utils.py b/tests/integration/utils.py index 7d4cd41..86be75b 100644 --- a/tests/integration/utils.py +++ b/tests/integration/utils.py @@ -90,7 +90,9 @@ def has_docker(self): return ( shutil.which("docker") is not None and subprocess.run( - ["docker", "stats"], stdout=subprocess.PIPE, stderr=subprocess.PIPE + ["docker", "stats", "--no-stream"], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, ).returncode == 0 )