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 603c363 commit c818a6aCopy full SHA for c818a6a
tests/run.py
@@ -37,6 +37,7 @@ def fetch_godot_binary_if_needed(build_dir: Path, godot_version_hint: str) -> Pa
37
spec = importlib.util.spec_from_file_location(
38
"download_python", BASEDIR / "../scripts/fetch_godot.py"
39
)
40
+ assert spec is not None and spec.loader is not None
41
module = importlib.util.module_from_spec(spec)
42
spec.loader.exec_module(module)
43
@@ -162,7 +163,7 @@ def run_test(
162
163
total_output = b""
164
subprocess_done = False
165
while True:
- buff: bytes = res.stdout.read1()
166
+ buff: bytes = res.stdout.read1() # type: ignore
167
total_output += buff
168
os.write(sys.stdout.fileno(), buff)
169
if subprocess_done:
0 commit comments