fix the fix

This commit is contained in:
Thomas Kriechbaumer 2020-04-17 17:46:11 +02:00
parent 24a14a7d68
commit 96f1f4b135

View File

@ -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