From 055b8f37b2259b538dc8abadf0bb992ba35b5478 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 21 Jun 2022 19:05:18 +0200 Subject: build-release: Ignore sandboxing disabled message See #7278 --- scripts/dev/build_release.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index ade338ecf..6337f2da3 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -177,6 +177,9 @@ def smoke_test(executable: pathlib.Path, debug: bool) -> None: r'[0-9:]* WARNING: Qt WebEngine resources not found at .*', (r'[0-9:]* WARNING: Installed Qt WebEngine locales directory not found at ' r'location /qtwebengine_locales\. Trying application directory\.\.\.'), + + # https://github.com/pyinstaller/pyinstaller/pull/6903 + r"[0-9:]* INFO: Sandboxing disabled by user\.", ] proc = _smoke_test_run(executable) -- cgit v1.2.3-54-g00ecf