Skip to content

Commit

Permalink
fix: fix has_docker check pending
Browse files Browse the repository at this point in the history
  • Loading branch information
pitt-liang committed Jul 11, 2024
1 parent 55cb434 commit e27d1e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit e27d1e7

Please sign in to comment.