diff --git a/internal/deploy/deploy.go b/internal/deploy/deploy.go index ed7676b..0a389c6 100644 --- a/internal/deploy/deploy.go +++ b/internal/deploy/deploy.go @@ -155,8 +155,8 @@ func RunNewDeployment(t *testing.T, shouldTCPDump bool) *SlidingSyncDeployment { "--mode", "regular", "-s", "/addons/__init__.py", }, - WaitingFor: wait.ForLog("proxy listening"), - Networks: []string{networkName}, + //WaitingFor: wait.ForLog("proxy listening"), + Networks: []string{networkName}, NetworkAliases: map[string][]string{ networkName: {"mitmproxy"}, }, diff --git a/tests/addons/__init__.py b/tests/addons/__init__.py index 21ebe48..e49ace3 100644 --- a/tests/addons/__init__.py +++ b/tests/addons/__init__.py @@ -3,6 +3,7 @@ from status_code import StatusCode from controller import MITM_DOMAIN_NAME, app +print("loading complement crypto addons") addons = [ asgiapp.WSGIApp(app, MITM_DOMAIN_NAME, 80), # requests to this host will be routed to the flask app StatusCode(),