diff --git a/.ci/ci_lib.py b/.ci/ci_lib.py index 971ae5d8..dc7a02a8 100644 --- a/.ci/ci_lib.py +++ b/.ci/ci_lib.py @@ -233,7 +233,7 @@ def proc_is_docker(pid): def get_interesting_procs(container_name=None): - args = ['ps', '-a', '-x', '-oppid=', '-opid=', '-ocomm=', '-ocommand='] + args = ['ps', 'ax', '-oppid=', '-opid=', '-ocomm=', '-ocommand='] if container_name is not None: args = ['docker', 'exec', container_name] + args