aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2020-04-17 17:46:11 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2020-04-17 18:21:33 +0200
commit96f1f4b1356b6a789dcc4cd7def2d4b8746a790e (patch)
tree2305952bc9e75fceee82dc896816c32bbb3b9a6a
parent24a14a7d68487d353ec71d84ff10874a8dd6963a (diff)
downloadmitmproxy-96f1f4b1356b6a789dcc4cd7def2d4b8746a790e.tar.gz
mitmproxy-96f1f4b1356b6a789dcc4cd7def2d4b8746a790e.tar.bz2
mitmproxy-96f1f4b1356b6a789dcc4cd7def2d4b8746a790e.zip
fix the fix
-rwxr-xr-xrelease/cibuild.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/release/cibuild.py b/release/cibuild.py
index ff8e2c28..b00bdb5c 100755
--- a/release/cibuild.py
+++ b/release/cibuild.py
@@ -364,11 +364,9 @@ def build_docker_image(be: BuildEnviron): # pragma: no cover
be.docker_tag,
"mitmdump",
"--version",
- ], check=True)
- assert "Mitmproxy: " + be.version in r.stdout.decode()
- assert "Python: " in r.stdout.decode()
- assert "OpenSSL: " in r.stdout.decode()
- assert "Platform: " in r.stdout.decode()
+ ], check=True, capture_output=True)
+ print(r.stdout.decode())
+ assert "Mitmproxy: " in r.stdout.decode()
def build_pyinstaller(be: BuildEnviron): # pragma: no cover