aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2021-09-07 13:26:34 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2021-09-07 13:26:34 +0200
commitc4ec459d289efd85071e64aea01fe81c258c0a4f (patch)
tree59b6605322d6dae358959afa3fdd642df816c7e6
parent86cfb2ea828c6904a54938281cb6fde659b73f39 (diff)
bit: Force Python3 for CI.
-rw-r--r--core/math/big/tests/build.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/math/big/tests/build.bat b/core/math/big/tests/build.bat
index c2a5ada18..3fd9f26f8 100644
--- a/core/math/big/tests/build.bat
+++ b/core/math/big/tests/build.bat
@@ -4,6 +4,6 @@ set TEST_ARGS=
set OUT_NAME=test_library
set COMMON=-build-mode:shared -show-timings -no-bounds-check -define:MATH_BIG_EXE=false -vet -strict-style
set PATH_TO_ODIN==..\..\..\..\odin
-%PATH_TO_ODIN% build . %COMMON% -o:minimal -out:%OUT_NAME% && python test.py %TEST_ARGS%
-%PATH_TO_ODIN% build . %COMMON% -o:size -out:%OUT_NAME% && python test.py %TEST_ARGS%
-%PATH_TO_ODIN% build . %COMMON% -o:speed -out:%OUT_NAME% && python test.py %TEST_ARGS% \ No newline at end of file
+%PATH_TO_ODIN% build . %COMMON% -o:minimal -out:%OUT_NAME% && python3 test.py %TEST_ARGS%
+%PATH_TO_ODIN% build . %COMMON% -o:size -out:%OUT_NAME% && python3 test.py %TEST_ARGS%
+%PATH_TO_ODIN% build . %COMMON% -o:speed -out:%OUT_NAME% && python3 test.py %TEST_ARGS% \ No newline at end of file