We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f02046 commit 42e1283Copy full SHA for 42e1283
playwright/__main__.py
@@ -23,7 +23,8 @@ def main() -> None:
23
driver_executable = compute_driver_executable()
24
env = os.environ.copy()
25
env["PW_CLI_TARGET_LANG"] = "python"
26
- subprocess.run([str(driver_executable), *sys.argv[1:]], env=env)
+ completed_process = subprocess.run([str(driver_executable), *sys.argv[1:]], env=env)
27
+ sys.exit(completed_process.returncode)
28
29
30
if __name__ == "__main__":
0 commit comments