From d65991aa9d70ea86d16e32c00c05a8fd1a9568c9 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 24 May 2026 07:25:50 +0800 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Refactor=20project=20struc?= =?UTF-8?q?ture=20by=20removing=20scattered=20Python=20test=20scripts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- date_test.py => basic_tests/date_test.py | 0 decorator_func_test.py => basic_tests/decorator_func_test.py | 0 decorator_test.py => basic_tests/decorator_test.py | 0 exception_test.py => basic_tests/exception_test.py | 0 for_loop_test.py => basic_tests/for_loop_test.py | 0 functions_test.py => basic_tests/functions_test.py | 0 globa_test.py => basic_tests/globa_test.py | 0 guess_number.py => basic_tests/guess_number.py | 0 hello_world.py => basic_tests/hello_world.py | 0 input_test.py => basic_tests/input_test.py | 0 iter_test.py => basic_tests/iter_test.py | 0 leap_year.py => basic_tests/leap_year.py | 0 math_test.py => basic_tests/math_test.py | 0 none_test.py => basic_tests/none_test.py | 0 none_test_2.py => basic_tests/none_test_2.py | 0 print_no_buffer_test.py => basic_tests/print_no_buffer_test.py | 0 python_version.py => basic_tests/python_version.py | 0 show_my_ip.py => basic_tests/show_my_ip.py | 0 sqlite3_test.py => basic_tests/sqlite3_test.py | 0 stack_test.py => basic_tests/stack_test.py | 0 string_format_test.py => basic_tests/string_format_test.py | 0 sub_package_test.py => basic_tests/sub_package_test.py | 0 tls_certificate.py => basic_tests/tls_certificate.py | 0 class_person.py => class_tests/class_person.py | 0 class_test.py => class_tests/class_test.py | 0 json_base_model_test.py => json_tests/json_base_model_test.py | 0 json_test.py => json_tests/json_test.py | 0 .../subprocess_background_open_test.py | 0 .../subprocess_open_test.py | 0 subprocess_test.py => subprocess_tests/subprocess_test.py | 0 subprocess_test_2.py => subprocess_tests/subprocess_test_2.py | 0 31 files changed, 0 insertions(+), 0 deletions(-) rename date_test.py => basic_tests/date_test.py (100%) rename decorator_func_test.py => basic_tests/decorator_func_test.py (100%) rename decorator_test.py => basic_tests/decorator_test.py (100%) rename exception_test.py => basic_tests/exception_test.py (100%) rename for_loop_test.py => basic_tests/for_loop_test.py (100%) rename functions_test.py => basic_tests/functions_test.py (100%) rename globa_test.py => basic_tests/globa_test.py (100%) rename guess_number.py => basic_tests/guess_number.py (100%) rename hello_world.py => basic_tests/hello_world.py (100%) rename input_test.py => basic_tests/input_test.py (100%) rename iter_test.py => basic_tests/iter_test.py (100%) rename leap_year.py => basic_tests/leap_year.py (100%) rename math_test.py => basic_tests/math_test.py (100%) rename none_test.py => basic_tests/none_test.py (100%) rename none_test_2.py => basic_tests/none_test_2.py (100%) rename print_no_buffer_test.py => basic_tests/print_no_buffer_test.py (100%) rename python_version.py => basic_tests/python_version.py (100%) rename show_my_ip.py => basic_tests/show_my_ip.py (100%) rename sqlite3_test.py => basic_tests/sqlite3_test.py (100%) rename stack_test.py => basic_tests/stack_test.py (100%) rename string_format_test.py => basic_tests/string_format_test.py (100%) rename sub_package_test.py => basic_tests/sub_package_test.py (100%) rename tls_certificate.py => basic_tests/tls_certificate.py (100%) rename class_person.py => class_tests/class_person.py (100%) rename class_test.py => class_tests/class_test.py (100%) rename json_base_model_test.py => json_tests/json_base_model_test.py (100%) rename json_test.py => json_tests/json_test.py (100%) rename subprocess_background_open_test.py => subprocess_tests/subprocess_background_open_test.py (100%) rename subprocess_open_test.py => subprocess_tests/subprocess_open_test.py (100%) rename subprocess_test.py => subprocess_tests/subprocess_test.py (100%) rename subprocess_test_2.py => subprocess_tests/subprocess_test_2.py (100%) diff --git a/date_test.py b/basic_tests/date_test.py similarity index 100% rename from date_test.py rename to basic_tests/date_test.py diff --git a/decorator_func_test.py b/basic_tests/decorator_func_test.py similarity index 100% rename from decorator_func_test.py rename to basic_tests/decorator_func_test.py diff --git a/decorator_test.py b/basic_tests/decorator_test.py similarity index 100% rename from decorator_test.py rename to basic_tests/decorator_test.py diff --git a/exception_test.py b/basic_tests/exception_test.py similarity index 100% rename from exception_test.py rename to basic_tests/exception_test.py diff --git a/for_loop_test.py b/basic_tests/for_loop_test.py similarity index 100% rename from for_loop_test.py rename to basic_tests/for_loop_test.py diff --git a/functions_test.py b/basic_tests/functions_test.py similarity index 100% rename from functions_test.py rename to basic_tests/functions_test.py diff --git a/globa_test.py b/basic_tests/globa_test.py similarity index 100% rename from globa_test.py rename to basic_tests/globa_test.py diff --git a/guess_number.py b/basic_tests/guess_number.py similarity index 100% rename from guess_number.py rename to basic_tests/guess_number.py diff --git a/hello_world.py b/basic_tests/hello_world.py similarity index 100% rename from hello_world.py rename to basic_tests/hello_world.py diff --git a/input_test.py b/basic_tests/input_test.py similarity index 100% rename from input_test.py rename to basic_tests/input_test.py diff --git a/iter_test.py b/basic_tests/iter_test.py similarity index 100% rename from iter_test.py rename to basic_tests/iter_test.py diff --git a/leap_year.py b/basic_tests/leap_year.py similarity index 100% rename from leap_year.py rename to basic_tests/leap_year.py diff --git a/math_test.py b/basic_tests/math_test.py similarity index 100% rename from math_test.py rename to basic_tests/math_test.py diff --git a/none_test.py b/basic_tests/none_test.py similarity index 100% rename from none_test.py rename to basic_tests/none_test.py diff --git a/none_test_2.py b/basic_tests/none_test_2.py similarity index 100% rename from none_test_2.py rename to basic_tests/none_test_2.py diff --git a/print_no_buffer_test.py b/basic_tests/print_no_buffer_test.py similarity index 100% rename from print_no_buffer_test.py rename to basic_tests/print_no_buffer_test.py diff --git a/python_version.py b/basic_tests/python_version.py similarity index 100% rename from python_version.py rename to basic_tests/python_version.py diff --git a/show_my_ip.py b/basic_tests/show_my_ip.py similarity index 100% rename from show_my_ip.py rename to basic_tests/show_my_ip.py diff --git a/sqlite3_test.py b/basic_tests/sqlite3_test.py similarity index 100% rename from sqlite3_test.py rename to basic_tests/sqlite3_test.py diff --git a/stack_test.py b/basic_tests/stack_test.py similarity index 100% rename from stack_test.py rename to basic_tests/stack_test.py diff --git a/string_format_test.py b/basic_tests/string_format_test.py similarity index 100% rename from string_format_test.py rename to basic_tests/string_format_test.py diff --git a/sub_package_test.py b/basic_tests/sub_package_test.py similarity index 100% rename from sub_package_test.py rename to basic_tests/sub_package_test.py diff --git a/tls_certificate.py b/basic_tests/tls_certificate.py similarity index 100% rename from tls_certificate.py rename to basic_tests/tls_certificate.py diff --git a/class_person.py b/class_tests/class_person.py similarity index 100% rename from class_person.py rename to class_tests/class_person.py diff --git a/class_test.py b/class_tests/class_test.py similarity index 100% rename from class_test.py rename to class_tests/class_test.py diff --git a/json_base_model_test.py b/json_tests/json_base_model_test.py similarity index 100% rename from json_base_model_test.py rename to json_tests/json_base_model_test.py diff --git a/json_test.py b/json_tests/json_test.py similarity index 100% rename from json_test.py rename to json_tests/json_test.py diff --git a/subprocess_background_open_test.py b/subprocess_tests/subprocess_background_open_test.py similarity index 100% rename from subprocess_background_open_test.py rename to subprocess_tests/subprocess_background_open_test.py diff --git a/subprocess_open_test.py b/subprocess_tests/subprocess_open_test.py similarity index 100% rename from subprocess_open_test.py rename to subprocess_tests/subprocess_open_test.py diff --git a/subprocess_test.py b/subprocess_tests/subprocess_test.py similarity index 100% rename from subprocess_test.py rename to subprocess_tests/subprocess_test.py diff --git a/subprocess_test_2.py b/subprocess_tests/subprocess_test_2.py similarity index 100% rename from subprocess_test_2.py rename to subprocess_tests/subprocess_test_2.py