From 89786e3a1cc1c35706e7f6cbf4cef6f1f9d619f7 Mon Sep 17 00:00:00 2001 From: Shaikh Ubaid Date: Thu, 24 Aug 2023 22:32:26 +0530 Subject: [PATCH] Refactor: Move test_modules folder to integration_tests --- integration_tests/CMakeLists.txt | 3 +-- {test_modules => integration_tests/test_modules}/__init__.py | 0 .../test_modules}/mathfn/__init__.py | 0 {test_modules => integration_tests/test_modules}/mathfn/sin.py | 0 4 files changed, 1 insertion(+), 2 deletions(-) rename {test_modules => integration_tests/test_modules}/__init__.py (100%) rename {test_modules => integration_tests/test_modules}/mathfn/__init__.py (100%) rename {test_modules => integration_tests/test_modules}/mathfn/sin.py (100%) diff --git a/integration_tests/CMakeLists.txt b/integration_tests/CMakeLists.txt index 513b825c29..3e022a0fd2 100644 --- a/integration_tests/CMakeLists.txt +++ b/integration_tests/CMakeLists.txt @@ -562,8 +562,7 @@ RUN(NAME modules_02 LABELS cpython llvm c wasm wasm_x86 wasm_x64) RUN(NAME test_import_01 LABELS cpython llvm c) RUN(NAME test_import_02 LABELS cpython llvm c) RUN(NAME test_import_03 LABELS cpython llvm c) -RUN(NAME test_import_04 IMPORT_PATH .. - LABELS cpython llvm c) +RUN(NAME test_import_04 LABELS cpython llvm c) RUN(NAME test_import_05 LABELS cpython llvm c wasm wasm_x86 wasm_x64) RUN(NAME test_import_06 LABELS cpython llvm) RUN(NAME test_import_07 LABELS cpython llvm c) diff --git a/test_modules/__init__.py b/integration_tests/test_modules/__init__.py similarity index 100% rename from test_modules/__init__.py rename to integration_tests/test_modules/__init__.py diff --git a/test_modules/mathfn/__init__.py b/integration_tests/test_modules/mathfn/__init__.py similarity index 100% rename from test_modules/mathfn/__init__.py rename to integration_tests/test_modules/mathfn/__init__.py diff --git a/test_modules/mathfn/sin.py b/integration_tests/test_modules/mathfn/sin.py similarity index 100% rename from test_modules/mathfn/sin.py rename to integration_tests/test_modules/mathfn/sin.py