From 92739ea804ea08b950548c6f3a32552b743d03e5 Mon Sep 17 00:00:00 2001 From: Jin Hai Date: Thu, 23 Oct 2025 22:31:55 +0800 Subject: [PATCH] Move test files (#10765) ### What problem does this PR solve? Move some test files to test/testcases ### Type of change - [x] Refactoring Signed-off-by: Jin Hai --- test/{ => testcases}/configs.py | 0 test/{ => testcases}/conftest.py | 0 test/{ => testcases}/libs/__init__.py | 0 test/{ => testcases}/libs/auth.py | 0 test/{ => testcases}/utils/__init__.py | 0 test/{ => testcases}/utils/file_utils.py | 0 test/{ => testcases}/utils/hypothesis_utils.py | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename test/{ => testcases}/configs.py (100%) rename test/{ => testcases}/conftest.py (100%) rename test/{ => testcases}/libs/__init__.py (100%) rename test/{ => testcases}/libs/auth.py (100%) rename test/{ => testcases}/utils/__init__.py (100%) rename test/{ => testcases}/utils/file_utils.py (100%) rename test/{ => testcases}/utils/hypothesis_utils.py (100%) diff --git a/test/configs.py b/test/testcases/configs.py similarity index 100% rename from test/configs.py rename to test/testcases/configs.py diff --git a/test/conftest.py b/test/testcases/conftest.py similarity index 100% rename from test/conftest.py rename to test/testcases/conftest.py diff --git a/test/libs/__init__.py b/test/testcases/libs/__init__.py similarity index 100% rename from test/libs/__init__.py rename to test/testcases/libs/__init__.py diff --git a/test/libs/auth.py b/test/testcases/libs/auth.py similarity index 100% rename from test/libs/auth.py rename to test/testcases/libs/auth.py diff --git a/test/utils/__init__.py b/test/testcases/utils/__init__.py similarity index 100% rename from test/utils/__init__.py rename to test/testcases/utils/__init__.py diff --git a/test/utils/file_utils.py b/test/testcases/utils/file_utils.py similarity index 100% rename from test/utils/file_utils.py rename to test/testcases/utils/file_utils.py diff --git a/test/utils/hypothesis_utils.py b/test/testcases/utils/hypothesis_utils.py similarity index 100% rename from test/utils/hypothesis_utils.py rename to test/testcases/utils/hypothesis_utils.py