Skip to content

Commit

Permalink
switch testflows from docker-compose to docker compose, --ansi never …
Browse files Browse the repository at this point in the history
…--progress plain
  • Loading branch information
Slach committed Aug 1, 2024
1 parent 5c27caa commit 9930cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testflows/helpers/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def __init__(self, local=False,
if not os.path.exists(docker_compose_file_path):
raise TypeError(f"docker compose file '{docker_compose_file_path}' does not exist")

self.docker_compose += f" --ansi never --project-directory \"{docker_compose_project_dir}\" --file \"{docker_compose_file_path}\""
self.docker_compose += f" --ansi never --progress plain --project-directory \"{docker_compose_project_dir}\" --file \"{docker_compose_file_path}\""
self.lock = threading.Lock()

@property
Expand Down

0 comments on commit 9930cea

Please sign in to comment.