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 cd11af4 commit c51f1d1Copy full SHA for c51f1d1
tests/run.py
@@ -166,11 +166,6 @@ def run_test(
166
if res.returncode != 0:
167
raise SystemExit(f"{RED}{test_name}: Non-zero return code: {res.returncode}{NO_COLOR}")
168
for line in total_output.splitlines():
169
- # See https://github.com/godotengine/godot/issues/66722
170
- if b"Message Id Number: 0 | Message Id Name: Loader Message" in line:
171
- continue
172
- if b"lavapipe is not a conformant vulkan implementation, testing use only." in line:
173
174
lower_line = line.lower()
175
if b"error" in lower_line or b"warning" in lower_line:
176
raise SystemExit(
0 commit comments