From 9e3451ac8f11579f3f9d424080b32b99a24c6040 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20=C4=8Cert=C3=ADk?= Date: Sun, 20 Mar 2022 14:45:04 -0700 Subject: [PATCH] Move test_types_01.py to CPython/LPython tests --- integration_tests/run_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration_tests/run_tests.py b/integration_tests/run_tests.py index cdbaffd6bf..149555d818 100755 --- a/integration_tests/run_tests.py +++ b/integration_tests/run_tests.py @@ -11,6 +11,7 @@ "expr_03.py", "expr_04.py", "expr_05.py", + "test_types_01.py", "test_str_01.py", "test_str_02.py", "modules_01.py", @@ -32,7 +33,7 @@ "test_math_02.py", "test_c_interop_01.py", "test_generics_01.py", - "test_cmath.py" + "test_cmath.py", ] # CPython tests only @@ -40,7 +41,6 @@ "test_builtin_bin.py", "test_builtin_hex.py", "test_builtin_oct.py", - "test_types_01.py", ] CUR_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__)))