mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 07:08:10 +00:00
fix the fix
This commit is contained in:
parent
24a14a7d68
commit
96f1f4b135
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user