From 40ebe140f5b9eb2c65d59ad6c9964c9a23fa71a4 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Mon, 13 May 2024 12:05:27 +0200 Subject: [PATCH] Move namespaces module --- py-polars/tests/unit/{ => operations}/namespaces/__init__.py | 0 .../tests/unit/{ => operations}/namespaces/array/__init__.py | 0 .../tests/unit/{ => operations}/namespaces/array/test_array.py | 0 .../tests/unit/{ => operations}/namespaces/array/test_contains.py | 0 .../tests/unit/{ => operations}/namespaces/array/test_to_list.py | 0 py-polars/tests/unit/{ => operations}/namespaces/conftest.py | 0 .../unit/{ => operations}/namespaces/files/test_tree_fmt.txt | 0 py-polars/tests/unit/{ => operations}/namespaces/list/__init__.py | 0 .../tests/unit/{ => operations}/namespaces/list/test_list.py | 0 .../unit/{ => operations}/namespaces/list/test_set_operations.py | 0 .../tests/unit/{ => operations}/namespaces/string/__init__.py | 0 .../tests/unit/{ => operations}/namespaces/string/test_concat.py | 0 .../tests/unit/{ => operations}/namespaces/string/test_pad.py | 0 .../tests/unit/{ => operations}/namespaces/string/test_string.py | 0 .../tests/unit/{ => operations}/namespaces/temporal/__init__.py | 0 .../namespaces/temporal/test_add_business_days.py | 0 .../unit/{ => operations}/namespaces/temporal/test_datetime.py | 0 .../unit/{ => operations}/namespaces/temporal/test_to_datetime.py | 0 .../unit/{ => operations}/namespaces/temporal/test_truncate.py | 0 py-polars/tests/unit/{ => operations}/namespaces/test_binary.py | 0 .../tests/unit/{ => operations}/namespaces/test_categorical.py | 0 py-polars/tests/unit/{ => operations}/namespaces/test_meta.py | 0 py-polars/tests/unit/{ => operations}/namespaces/test_name.py | 0 py-polars/tests/unit/{ => operations}/namespaces/test_plot.py | 0 py-polars/tests/unit/{ => operations}/namespaces/test_strptime.py | 0 py-polars/tests/unit/{ => operations}/namespaces/test_struct.py | 0 26 files changed, 0 insertions(+), 0 deletions(-) rename py-polars/tests/unit/{ => operations}/namespaces/__init__.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/array/__init__.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/array/test_array.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/array/test_contains.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/array/test_to_list.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/conftest.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/files/test_tree_fmt.txt (100%) rename py-polars/tests/unit/{ => operations}/namespaces/list/__init__.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/list/test_list.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/list/test_set_operations.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/string/__init__.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/string/test_concat.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/string/test_pad.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/string/test_string.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/temporal/__init__.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/temporal/test_add_business_days.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/temporal/test_datetime.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/temporal/test_to_datetime.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/temporal/test_truncate.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/test_binary.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/test_categorical.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/test_meta.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/test_name.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/test_plot.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/test_strptime.py (100%) rename py-polars/tests/unit/{ => operations}/namespaces/test_struct.py (100%) diff --git a/py-polars/tests/unit/namespaces/__init__.py b/py-polars/tests/unit/operations/namespaces/__init__.py similarity index 100% rename from py-polars/tests/unit/namespaces/__init__.py rename to py-polars/tests/unit/operations/namespaces/__init__.py diff --git a/py-polars/tests/unit/namespaces/array/__init__.py b/py-polars/tests/unit/operations/namespaces/array/__init__.py similarity index 100% rename from py-polars/tests/unit/namespaces/array/__init__.py rename to py-polars/tests/unit/operations/namespaces/array/__init__.py diff --git a/py-polars/tests/unit/namespaces/array/test_array.py b/py-polars/tests/unit/operations/namespaces/array/test_array.py similarity index 100% rename from py-polars/tests/unit/namespaces/array/test_array.py rename to py-polars/tests/unit/operations/namespaces/array/test_array.py diff --git a/py-polars/tests/unit/namespaces/array/test_contains.py b/py-polars/tests/unit/operations/namespaces/array/test_contains.py similarity index 100% rename from py-polars/tests/unit/namespaces/array/test_contains.py rename to py-polars/tests/unit/operations/namespaces/array/test_contains.py diff --git a/py-polars/tests/unit/namespaces/array/test_to_list.py b/py-polars/tests/unit/operations/namespaces/array/test_to_list.py similarity index 100% rename from py-polars/tests/unit/namespaces/array/test_to_list.py rename to py-polars/tests/unit/operations/namespaces/array/test_to_list.py diff --git a/py-polars/tests/unit/namespaces/conftest.py b/py-polars/tests/unit/operations/namespaces/conftest.py similarity index 100% rename from py-polars/tests/unit/namespaces/conftest.py rename to py-polars/tests/unit/operations/namespaces/conftest.py diff --git a/py-polars/tests/unit/namespaces/files/test_tree_fmt.txt b/py-polars/tests/unit/operations/namespaces/files/test_tree_fmt.txt similarity index 100% rename from py-polars/tests/unit/namespaces/files/test_tree_fmt.txt rename to py-polars/tests/unit/operations/namespaces/files/test_tree_fmt.txt diff --git a/py-polars/tests/unit/namespaces/list/__init__.py b/py-polars/tests/unit/operations/namespaces/list/__init__.py similarity index 100% rename from py-polars/tests/unit/namespaces/list/__init__.py rename to py-polars/tests/unit/operations/namespaces/list/__init__.py diff --git a/py-polars/tests/unit/namespaces/list/test_list.py b/py-polars/tests/unit/operations/namespaces/list/test_list.py similarity index 100% rename from py-polars/tests/unit/namespaces/list/test_list.py rename to py-polars/tests/unit/operations/namespaces/list/test_list.py diff --git a/py-polars/tests/unit/namespaces/list/test_set_operations.py b/py-polars/tests/unit/operations/namespaces/list/test_set_operations.py similarity index 100% rename from py-polars/tests/unit/namespaces/list/test_set_operations.py rename to py-polars/tests/unit/operations/namespaces/list/test_set_operations.py diff --git a/py-polars/tests/unit/namespaces/string/__init__.py b/py-polars/tests/unit/operations/namespaces/string/__init__.py similarity index 100% rename from py-polars/tests/unit/namespaces/string/__init__.py rename to py-polars/tests/unit/operations/namespaces/string/__init__.py diff --git a/py-polars/tests/unit/namespaces/string/test_concat.py b/py-polars/tests/unit/operations/namespaces/string/test_concat.py similarity index 100% rename from py-polars/tests/unit/namespaces/string/test_concat.py rename to py-polars/tests/unit/operations/namespaces/string/test_concat.py diff --git a/py-polars/tests/unit/namespaces/string/test_pad.py b/py-polars/tests/unit/operations/namespaces/string/test_pad.py similarity index 100% rename from py-polars/tests/unit/namespaces/string/test_pad.py rename to py-polars/tests/unit/operations/namespaces/string/test_pad.py diff --git a/py-polars/tests/unit/namespaces/string/test_string.py b/py-polars/tests/unit/operations/namespaces/string/test_string.py similarity index 100% rename from py-polars/tests/unit/namespaces/string/test_string.py rename to py-polars/tests/unit/operations/namespaces/string/test_string.py diff --git a/py-polars/tests/unit/namespaces/temporal/__init__.py b/py-polars/tests/unit/operations/namespaces/temporal/__init__.py similarity index 100% rename from py-polars/tests/unit/namespaces/temporal/__init__.py rename to py-polars/tests/unit/operations/namespaces/temporal/__init__.py diff --git a/py-polars/tests/unit/namespaces/temporal/test_add_business_days.py b/py-polars/tests/unit/operations/namespaces/temporal/test_add_business_days.py similarity index 100% rename from py-polars/tests/unit/namespaces/temporal/test_add_business_days.py rename to py-polars/tests/unit/operations/namespaces/temporal/test_add_business_days.py diff --git a/py-polars/tests/unit/namespaces/temporal/test_datetime.py b/py-polars/tests/unit/operations/namespaces/temporal/test_datetime.py similarity index 100% rename from py-polars/tests/unit/namespaces/temporal/test_datetime.py rename to py-polars/tests/unit/operations/namespaces/temporal/test_datetime.py diff --git a/py-polars/tests/unit/namespaces/temporal/test_to_datetime.py b/py-polars/tests/unit/operations/namespaces/temporal/test_to_datetime.py similarity index 100% rename from py-polars/tests/unit/namespaces/temporal/test_to_datetime.py rename to py-polars/tests/unit/operations/namespaces/temporal/test_to_datetime.py diff --git a/py-polars/tests/unit/namespaces/temporal/test_truncate.py b/py-polars/tests/unit/operations/namespaces/temporal/test_truncate.py similarity index 100% rename from py-polars/tests/unit/namespaces/temporal/test_truncate.py rename to py-polars/tests/unit/operations/namespaces/temporal/test_truncate.py diff --git a/py-polars/tests/unit/namespaces/test_binary.py b/py-polars/tests/unit/operations/namespaces/test_binary.py similarity index 100% rename from py-polars/tests/unit/namespaces/test_binary.py rename to py-polars/tests/unit/operations/namespaces/test_binary.py diff --git a/py-polars/tests/unit/namespaces/test_categorical.py b/py-polars/tests/unit/operations/namespaces/test_categorical.py similarity index 100% rename from py-polars/tests/unit/namespaces/test_categorical.py rename to py-polars/tests/unit/operations/namespaces/test_categorical.py diff --git a/py-polars/tests/unit/namespaces/test_meta.py b/py-polars/tests/unit/operations/namespaces/test_meta.py similarity index 100% rename from py-polars/tests/unit/namespaces/test_meta.py rename to py-polars/tests/unit/operations/namespaces/test_meta.py diff --git a/py-polars/tests/unit/namespaces/test_name.py b/py-polars/tests/unit/operations/namespaces/test_name.py similarity index 100% rename from py-polars/tests/unit/namespaces/test_name.py rename to py-polars/tests/unit/operations/namespaces/test_name.py diff --git a/py-polars/tests/unit/namespaces/test_plot.py b/py-polars/tests/unit/operations/namespaces/test_plot.py similarity index 100% rename from py-polars/tests/unit/namespaces/test_plot.py rename to py-polars/tests/unit/operations/namespaces/test_plot.py diff --git a/py-polars/tests/unit/namespaces/test_strptime.py b/py-polars/tests/unit/operations/namespaces/test_strptime.py similarity index 100% rename from py-polars/tests/unit/namespaces/test_strptime.py rename to py-polars/tests/unit/operations/namespaces/test_strptime.py diff --git a/py-polars/tests/unit/namespaces/test_struct.py b/py-polars/tests/unit/operations/namespaces/test_struct.py similarity index 100% rename from py-polars/tests/unit/namespaces/test_struct.py rename to py-polars/tests/unit/operations/namespaces/test_struct.py