Skip to content

Commit

Permalink
fix: fix pyver
Browse files Browse the repository at this point in the history
  • Loading branch information
scx1332 committed Apr 25, 2024
1 parent 0f3fc82 commit 86c7379
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/scripts/poetry_install.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
# flake8: noqa

r"""
This script will install Poetry and its dependencies in an isolated fashion.
Expand Down
2 changes: 1 addition & 1 deletion goth/default-assets/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
# A service that runs `nginx` and routes API calls to
# the `mitmproxy` instance running as part of the test
# harness on the host machine
image: scx1332/goth
image: proxy-nginx
ports:
# Requests to ports 6001-6010 in proxy-nginx are forwarded
# to the MITM proxy started by the test runner, and further
Expand Down
2 changes: 1 addition & 1 deletion goth/runner/container/compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ async def start_network(
command = ["docker-compose", "-f", str(self.config.file_path), "up", "-d"]

await build_yagna_image(self.config.build_env)
# await build_proxy_image(self.config.build_env.docker_dir)
await build_proxy_image(self.config.build_env.docker_dir)

if force_build or self.config.file_path != ComposeNetworkManager._last_compose_path:
command.append("--build")
Expand Down

0 comments on commit 86c7379

Please sign in to comment.