From 8061da64e1d4978de6208246022da5eb7f4e6067 Mon Sep 17 00:00:00 2001 From: Pikachu920 <28607612+Pikachu920@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:43:28 -0600 Subject: [PATCH] Update submodules after checkout --- run-tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/run-tests.py b/run-tests.py index 0925865..9c39f96 100644 --- a/run-tests.py +++ b/run-tests.py @@ -42,6 +42,7 @@ class EnvironmentResource(TypedDict): os.chdir(skript_repo_path) if skript_repo_ref is not None and not skript_repo_ref.isspace(): subprocess.run(("git", "checkout", "-f", skript_repo_ref)) + subprocess.run(("git", "submodule", "update", "--recursive")) if not run_vanilla_tests: print("Deleting vanilla tests") delete_contents_of_directory(skript_test_directory)