Skip to content

Commit

Permalink
docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome committed Jun 28, 2024
1 parent 97947e1 commit d50df87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/nginx_opentracing_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def setUp(self):
)

self.environment_handle = subprocess.Popen(
["docker-compose", "up"],
["docker compose", "up"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
Expand Down Expand Up @@ -107,7 +107,7 @@ def _stopDocker(self):
if not self.running:
return
self.running = False
subprocess.check_call(["docker-compose", "down"])
subprocess.check_call(["docker compose", "down"])
stdout, stderr = self.environment_handle.communicate()
self.environment_stdout = stdout
self.environment_stderr = stderr
Expand Down

0 comments on commit d50df87

Please sign in to comment.