From 5a703d081f5750d980f01ff6def3724865e81355 Mon Sep 17 00:00:00 2001 From: Ashwin Srinath <3190405+shwina@users.noreply.github.com> Date: Fri, 7 Apr 2023 11:18:46 -0400 Subject: [PATCH] Add empty test files for test reorganization (#12288) This PR adds empty test modules that match the "Test Organization" guidelines outlined in the [developer guide](https://github.com/rapidsai/cudf/blob/branch-23.02/docs/cudf/source/developer_guide/testing.md#test-organization). Follow-up PRs will move existing tests into these test modules. While I have attempted to match the structure of our API reference as much a possible, there are small differences. For example, the API reference lumps together [Reshaping, Sorting, and Transposing](https://docs.rapids.ai/api/cudf/stable/api_docs/dataframe.html#reshaping-sorting-transposing), while I opted to include two different modules for reshaping and sorting. There are only a couple of instances where I needed to deviate from the structure though. Authors: - Ashwin Srinath (https://github.com/shwina) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) URL: https://github.com/rapidsai/cudf/pull/12288 --- python/cudf/cudf/tests/data/__init__.py | 0 python/cudf/cudf/tests/data/avro/__init__.py | 0 python/cudf/cudf/tests/data/orc/__init__.py | 0 python/cudf/cudf/tests/data/parquet/__init__.py | 0 python/cudf/cudf/tests/data/pkl/__init__.py | 0 python/cudf/cudf/tests/data/subword_tokenizer_data/__init__.py | 0 .../subword_tokenizer_data/bert_base_cased_sampled/__init__.py | 0 python/cudf/cudf/tests/data/text/__init__.py | 0 python/cudf/cudf/tests/dataframe/__init__.py | 0 python/cudf/cudf/tests/dataframe/test_attributes.py | 1 + python/cudf/cudf/tests/dataframe/test_binary_operations.py | 1 + python/cudf/cudf/tests/dataframe/test_combining.py | 1 + python/cudf/cudf/tests/dataframe/test_computation.py | 1 + python/cudf/cudf/tests/dataframe/test_constructing.py | 1 + python/cudf/cudf/tests/dataframe/test_conversion.py | 1 + python/cudf/cudf/tests/dataframe/test_function_application.py | 1 + python/cudf/cudf/tests/dataframe/test_indexing.py | 1 + python/cudf/cudf/tests/dataframe/test_io_serialization.py | 1 + python/cudf/cudf/tests/dataframe/test_missing.py | 1 + python/cudf/cudf/tests/dataframe/test_reindexing.py | 1 + python/cudf/cudf/tests/dataframe/test_reshaping.py | 1 + python/cudf/cudf/tests/dataframe/test_selecting.py | 1 + python/cudf/cudf/tests/dataframe/test_sorting.py | 1 + python/cudf/cudf/tests/dataframe/test_timeseries.py | 1 + python/cudf/cudf/tests/general_functions/__init__.py | 0 python/cudf/cudf/tests/general_functions/test_conversion.py | 1 + .../cudf/cudf/tests/general_functions/test_data_manipulation.py | 1 + python/cudf/cudf/tests/general_functions/test_datetimelike.py | 1 + python/cudf/cudf/tests/general_utilities/__init__.py | 0 python/cudf/cudf/tests/general_utilities/test_testing.py | 1 + python/cudf/cudf/tests/groupby/__init__.py | 0 python/cudf/cudf/tests/groupby/test_computation.py | 1 + python/cudf/cudf/tests/groupby/test_function_application.py | 1 + python/cudf/cudf/tests/groupby/test_indexing.py | 1 + python/cudf/cudf/tests/groupby/test_stats.py | 1 + python/cudf/cudf/tests/indexes/__init__.py | 0 python/cudf/cudf/tests/indexes/datetime/__init__.py | 0 python/cudf/cudf/tests/indexes/datetime/test_components.py | 1 + python/cudf/cudf/tests/indexes/datetime/test_constructing.py | 1 + python/cudf/cudf/tests/indexes/datetime/test_conversion.py | 1 + python/cudf/cudf/tests/indexes/datetime/test_time_specific.py | 1 + python/cudf/cudf/tests/indexes/multiindex/__init__.py | 0 python/cudf/cudf/tests/indexes/multiindex/test_constructing.py | 1 + python/cudf/cudf/tests/indexes/multiindex/test_properties.py | 1 + python/cudf/cudf/tests/indexes/multiindex/test_selecting.py | 1 + python/cudf/cudf/tests/indexes/test_categorical.py | 1 + python/cudf/cudf/tests/indexes/test_combining.py | 1 + python/cudf/cudf/tests/indexes/test_computation.py | 1 + python/cudf/cudf/tests/indexes/test_constructing.py | 1 + python/cudf/cudf/tests/indexes/test_conversion.py | 1 + python/cudf/cudf/tests/indexes/test_interval.py | 1 + python/cudf/cudf/tests/indexes/test_memory_usage.py | 1 + python/cudf/cudf/tests/indexes/test_missing.py | 1 + python/cudf/cudf/tests/indexes/test_modifying.py | 1 + python/cudf/cudf/tests/indexes/test_multiindex_compat.py | 1 + python/cudf/cudf/tests/indexes/test_numeric.py | 1 + python/cudf/cudf/tests/indexes/test_properties.py | 1 + python/cudf/cudf/tests/indexes/test_selecting.py | 1 + python/cudf/cudf/tests/indexes/test_sorting.py | 1 + python/cudf/cudf/tests/indexes/test_time_specific.py | 1 + python/cudf/cudf/tests/indexes/timedelta/__init__.py | 0 python/cudf/cudf/tests/indexes/timedelta/test_components.py | 1 + python/cudf/cudf/tests/indexes/timedelta/test_constructing.py | 1 + python/cudf/cudf/tests/indexes/timedelta/test_conversion.py | 1 + python/cudf/cudf/tests/input_output/__init__.py | 0 python/cudf/cudf/tests/input_output/test_avro.py | 1 + python/cudf/cudf/tests/input_output/test_csv.py | 1 + python/cudf/cudf/tests/input_output/test_feather.py | 1 + python/cudf/cudf/tests/input_output/test_hdf5.py | 1 + python/cudf/cudf/tests/input_output/test_json.py | 1 + python/cudf/cudf/tests/input_output/test_orc.py | 1 + python/cudf/cudf/tests/input_output/test_parquet.py | 1 + python/cudf/cudf/tests/input_output/test_text.py | 1 + python/cudf/cudf/tests/lists/__init__.py | 0 python/cudf/cudf/tests/lists/test_list_methods.py | 1 + python/cudf/cudf/tests/options/__init__.py | 0 python/cudf/cudf/tests/options/test_options.py | 1 + python/cudf/cudf/tests/series/__init__.py | 0 python/cudf/cudf/tests/series/test_accessors.py | 1 + python/cudf/cudf/tests/series/test_attributes.py | 1 + python/cudf/cudf/tests/series/test_binary_operations.py | 1 + python/cudf/cudf/tests/series/test_categorial.py | 1 + python/cudf/cudf/tests/series/test_combining.py | 1 + python/cudf/cudf/tests/series/test_computation.py | 1 + python/cudf/cudf/tests/series/test_constructing.py | 1 + python/cudf/cudf/tests/series/test_conversion.py | 1 + python/cudf/cudf/tests/series/test_datetimelike.py | 1 + python/cudf/cudf/tests/series/test_function_application.py | 1 + python/cudf/cudf/tests/series/test_indexing.py | 1 + python/cudf/cudf/tests/series/test_io_serialization.py | 1 + python/cudf/cudf/tests/series/test_missing.py | 1 + python/cudf/cudf/tests/series/test_reshaping.py | 1 + python/cudf/cudf/tests/series/test_selecting.py | 1 + python/cudf/cudf/tests/series/test_sorting.py | 1 + python/cudf/cudf/tests/series/test_timeseries.py | 1 + python/cudf/cudf/tests/strings/__init__.py | 0 python/cudf/cudf/tests/strings/test_string_methods.py | 1 + python/cudf/cudf/tests/structs/__init__.py | 0 python/cudf/cudf/tests/structs/test_struct_methods.py | 1 + python/cudf/cudf/tests/text/__init__.py | 0 python/cudf/cudf/tests/text/test_subword_tokenizer.py | 1 + python/cudf/cudf/tests/window/__init__.py | 0 python/cudf/cudf/tests/window/test_rolling.py | 1 + 103 files changed, 79 insertions(+) create mode 100644 python/cudf/cudf/tests/data/__init__.py create mode 100644 python/cudf/cudf/tests/data/avro/__init__.py create mode 100644 python/cudf/cudf/tests/data/orc/__init__.py create mode 100644 python/cudf/cudf/tests/data/parquet/__init__.py create mode 100644 python/cudf/cudf/tests/data/pkl/__init__.py create mode 100644 python/cudf/cudf/tests/data/subword_tokenizer_data/__init__.py create mode 100644 python/cudf/cudf/tests/data/subword_tokenizer_data/bert_base_cased_sampled/__init__.py create mode 100644 python/cudf/cudf/tests/data/text/__init__.py create mode 100644 python/cudf/cudf/tests/dataframe/__init__.py create mode 100644 python/cudf/cudf/tests/dataframe/test_attributes.py create mode 100644 python/cudf/cudf/tests/dataframe/test_binary_operations.py create mode 100644 python/cudf/cudf/tests/dataframe/test_combining.py create mode 100644 python/cudf/cudf/tests/dataframe/test_computation.py create mode 100644 python/cudf/cudf/tests/dataframe/test_constructing.py create mode 100644 python/cudf/cudf/tests/dataframe/test_conversion.py create mode 100644 python/cudf/cudf/tests/dataframe/test_function_application.py create mode 100644 python/cudf/cudf/tests/dataframe/test_indexing.py create mode 100644 python/cudf/cudf/tests/dataframe/test_io_serialization.py create mode 100644 python/cudf/cudf/tests/dataframe/test_missing.py create mode 100644 python/cudf/cudf/tests/dataframe/test_reindexing.py create mode 100644 python/cudf/cudf/tests/dataframe/test_reshaping.py create mode 100644 python/cudf/cudf/tests/dataframe/test_selecting.py create mode 100644 python/cudf/cudf/tests/dataframe/test_sorting.py create mode 100644 python/cudf/cudf/tests/dataframe/test_timeseries.py create mode 100644 python/cudf/cudf/tests/general_functions/__init__.py create mode 100644 python/cudf/cudf/tests/general_functions/test_conversion.py create mode 100644 python/cudf/cudf/tests/general_functions/test_data_manipulation.py create mode 100644 python/cudf/cudf/tests/general_functions/test_datetimelike.py create mode 100644 python/cudf/cudf/tests/general_utilities/__init__.py create mode 100644 python/cudf/cudf/tests/general_utilities/test_testing.py create mode 100644 python/cudf/cudf/tests/groupby/__init__.py create mode 100644 python/cudf/cudf/tests/groupby/test_computation.py create mode 100644 python/cudf/cudf/tests/groupby/test_function_application.py create mode 100644 python/cudf/cudf/tests/groupby/test_indexing.py create mode 100644 python/cudf/cudf/tests/groupby/test_stats.py create mode 100644 python/cudf/cudf/tests/indexes/__init__.py create mode 100644 python/cudf/cudf/tests/indexes/datetime/__init__.py create mode 100644 python/cudf/cudf/tests/indexes/datetime/test_components.py create mode 100644 python/cudf/cudf/tests/indexes/datetime/test_constructing.py create mode 100644 python/cudf/cudf/tests/indexes/datetime/test_conversion.py create mode 100644 python/cudf/cudf/tests/indexes/datetime/test_time_specific.py create mode 100644 python/cudf/cudf/tests/indexes/multiindex/__init__.py create mode 100644 python/cudf/cudf/tests/indexes/multiindex/test_constructing.py create mode 100644 python/cudf/cudf/tests/indexes/multiindex/test_properties.py create mode 100644 python/cudf/cudf/tests/indexes/multiindex/test_selecting.py create mode 100644 python/cudf/cudf/tests/indexes/test_categorical.py create mode 100644 python/cudf/cudf/tests/indexes/test_combining.py create mode 100644 python/cudf/cudf/tests/indexes/test_computation.py create mode 100644 python/cudf/cudf/tests/indexes/test_constructing.py create mode 100644 python/cudf/cudf/tests/indexes/test_conversion.py create mode 100644 python/cudf/cudf/tests/indexes/test_interval.py create mode 100644 python/cudf/cudf/tests/indexes/test_memory_usage.py create mode 100644 python/cudf/cudf/tests/indexes/test_missing.py create mode 100644 python/cudf/cudf/tests/indexes/test_modifying.py create mode 100644 python/cudf/cudf/tests/indexes/test_multiindex_compat.py create mode 100644 python/cudf/cudf/tests/indexes/test_numeric.py create mode 100644 python/cudf/cudf/tests/indexes/test_properties.py create mode 100644 python/cudf/cudf/tests/indexes/test_selecting.py create mode 100644 python/cudf/cudf/tests/indexes/test_sorting.py create mode 100644 python/cudf/cudf/tests/indexes/test_time_specific.py create mode 100644 python/cudf/cudf/tests/indexes/timedelta/__init__.py create mode 100644 python/cudf/cudf/tests/indexes/timedelta/test_components.py create mode 100644 python/cudf/cudf/tests/indexes/timedelta/test_constructing.py create mode 100644 python/cudf/cudf/tests/indexes/timedelta/test_conversion.py create mode 100644 python/cudf/cudf/tests/input_output/__init__.py create mode 100644 python/cudf/cudf/tests/input_output/test_avro.py create mode 100644 python/cudf/cudf/tests/input_output/test_csv.py create mode 100644 python/cudf/cudf/tests/input_output/test_feather.py create mode 100644 python/cudf/cudf/tests/input_output/test_hdf5.py create mode 100644 python/cudf/cudf/tests/input_output/test_json.py create mode 100644 python/cudf/cudf/tests/input_output/test_orc.py create mode 100644 python/cudf/cudf/tests/input_output/test_parquet.py create mode 100644 python/cudf/cudf/tests/input_output/test_text.py create mode 100644 python/cudf/cudf/tests/lists/__init__.py create mode 100644 python/cudf/cudf/tests/lists/test_list_methods.py create mode 100644 python/cudf/cudf/tests/options/__init__.py create mode 100644 python/cudf/cudf/tests/options/test_options.py create mode 100644 python/cudf/cudf/tests/series/__init__.py create mode 100644 python/cudf/cudf/tests/series/test_accessors.py create mode 100644 python/cudf/cudf/tests/series/test_attributes.py create mode 100644 python/cudf/cudf/tests/series/test_binary_operations.py create mode 100644 python/cudf/cudf/tests/series/test_categorial.py create mode 100644 python/cudf/cudf/tests/series/test_combining.py create mode 100644 python/cudf/cudf/tests/series/test_computation.py create mode 100644 python/cudf/cudf/tests/series/test_constructing.py create mode 100644 python/cudf/cudf/tests/series/test_conversion.py create mode 100644 python/cudf/cudf/tests/series/test_datetimelike.py create mode 100644 python/cudf/cudf/tests/series/test_function_application.py create mode 100644 python/cudf/cudf/tests/series/test_indexing.py create mode 100644 python/cudf/cudf/tests/series/test_io_serialization.py create mode 100644 python/cudf/cudf/tests/series/test_missing.py create mode 100644 python/cudf/cudf/tests/series/test_reshaping.py create mode 100644 python/cudf/cudf/tests/series/test_selecting.py create mode 100644 python/cudf/cudf/tests/series/test_sorting.py create mode 100644 python/cudf/cudf/tests/series/test_timeseries.py create mode 100644 python/cudf/cudf/tests/strings/__init__.py create mode 100644 python/cudf/cudf/tests/strings/test_string_methods.py create mode 100644 python/cudf/cudf/tests/structs/__init__.py create mode 100644 python/cudf/cudf/tests/structs/test_struct_methods.py create mode 100644 python/cudf/cudf/tests/text/__init__.py create mode 100644 python/cudf/cudf/tests/text/test_subword_tokenizer.py create mode 100644 python/cudf/cudf/tests/window/__init__.py create mode 100644 python/cudf/cudf/tests/window/test_rolling.py diff --git a/python/cudf/cudf/tests/data/__init__.py b/python/cudf/cudf/tests/data/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/data/avro/__init__.py b/python/cudf/cudf/tests/data/avro/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/data/orc/__init__.py b/python/cudf/cudf/tests/data/orc/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/data/parquet/__init__.py b/python/cudf/cudf/tests/data/parquet/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/data/pkl/__init__.py b/python/cudf/cudf/tests/data/pkl/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/data/subword_tokenizer_data/__init__.py b/python/cudf/cudf/tests/data/subword_tokenizer_data/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/data/subword_tokenizer_data/bert_base_cased_sampled/__init__.py b/python/cudf/cudf/tests/data/subword_tokenizer_data/bert_base_cased_sampled/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/data/text/__init__.py b/python/cudf/cudf/tests/data/text/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/dataframe/__init__.py b/python/cudf/cudf/tests/dataframe/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/dataframe/test_attributes.py b/python/cudf/cudf/tests/dataframe/test_attributes.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_attributes.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_binary_operations.py b/python/cudf/cudf/tests/dataframe/test_binary_operations.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_binary_operations.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_combining.py b/python/cudf/cudf/tests/dataframe/test_combining.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_combining.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_computation.py b/python/cudf/cudf/tests/dataframe/test_computation.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_computation.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_constructing.py b/python/cudf/cudf/tests/dataframe/test_constructing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_constructing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_conversion.py b/python/cudf/cudf/tests/dataframe/test_conversion.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_conversion.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_function_application.py b/python/cudf/cudf/tests/dataframe/test_function_application.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_function_application.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_indexing.py b/python/cudf/cudf/tests/dataframe/test_indexing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_indexing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_io_serialization.py b/python/cudf/cudf/tests/dataframe/test_io_serialization.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_io_serialization.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_missing.py b/python/cudf/cudf/tests/dataframe/test_missing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_missing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_reindexing.py b/python/cudf/cudf/tests/dataframe/test_reindexing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_reindexing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_reshaping.py b/python/cudf/cudf/tests/dataframe/test_reshaping.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_reshaping.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_selecting.py b/python/cudf/cudf/tests/dataframe/test_selecting.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_selecting.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_sorting.py b/python/cudf/cudf/tests/dataframe/test_sorting.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_sorting.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/dataframe/test_timeseries.py b/python/cudf/cudf/tests/dataframe/test_timeseries.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/dataframe/test_timeseries.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/general_functions/__init__.py b/python/cudf/cudf/tests/general_functions/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/general_functions/test_conversion.py b/python/cudf/cudf/tests/general_functions/test_conversion.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/general_functions/test_conversion.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/general_functions/test_data_manipulation.py b/python/cudf/cudf/tests/general_functions/test_data_manipulation.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/general_functions/test_data_manipulation.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/general_functions/test_datetimelike.py b/python/cudf/cudf/tests/general_functions/test_datetimelike.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/general_functions/test_datetimelike.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/general_utilities/__init__.py b/python/cudf/cudf/tests/general_utilities/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/general_utilities/test_testing.py b/python/cudf/cudf/tests/general_utilities/test_testing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/general_utilities/test_testing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/groupby/__init__.py b/python/cudf/cudf/tests/groupby/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/groupby/test_computation.py b/python/cudf/cudf/tests/groupby/test_computation.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/groupby/test_computation.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/groupby/test_function_application.py b/python/cudf/cudf/tests/groupby/test_function_application.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/groupby/test_function_application.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/groupby/test_indexing.py b/python/cudf/cudf/tests/groupby/test_indexing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/groupby/test_indexing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/groupby/test_stats.py b/python/cudf/cudf/tests/groupby/test_stats.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/groupby/test_stats.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/__init__.py b/python/cudf/cudf/tests/indexes/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/indexes/datetime/__init__.py b/python/cudf/cudf/tests/indexes/datetime/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/indexes/datetime/test_components.py b/python/cudf/cudf/tests/indexes/datetime/test_components.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/datetime/test_components.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/datetime/test_constructing.py b/python/cudf/cudf/tests/indexes/datetime/test_constructing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/datetime/test_constructing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/datetime/test_conversion.py b/python/cudf/cudf/tests/indexes/datetime/test_conversion.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/datetime/test_conversion.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/datetime/test_time_specific.py b/python/cudf/cudf/tests/indexes/datetime/test_time_specific.py new file mode 100644 index 00000000000..03d0d3d4602 --- /dev/null +++ b/python/cudf/cudf/tests/indexes/datetime/test_time_specific.py @@ -0,0 +1 @@ +# Copyright (c) 2022-2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/multiindex/__init__.py b/python/cudf/cudf/tests/indexes/multiindex/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/indexes/multiindex/test_constructing.py b/python/cudf/cudf/tests/indexes/multiindex/test_constructing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/multiindex/test_constructing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/multiindex/test_properties.py b/python/cudf/cudf/tests/indexes/multiindex/test_properties.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/multiindex/test_properties.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/multiindex/test_selecting.py b/python/cudf/cudf/tests/indexes/multiindex/test_selecting.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/multiindex/test_selecting.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_categorical.py b/python/cudf/cudf/tests/indexes/test_categorical.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_categorical.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_combining.py b/python/cudf/cudf/tests/indexes/test_combining.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_combining.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_computation.py b/python/cudf/cudf/tests/indexes/test_computation.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_computation.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_constructing.py b/python/cudf/cudf/tests/indexes/test_constructing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_constructing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_conversion.py b/python/cudf/cudf/tests/indexes/test_conversion.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_conversion.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_interval.py b/python/cudf/cudf/tests/indexes/test_interval.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_interval.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_memory_usage.py b/python/cudf/cudf/tests/indexes/test_memory_usage.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_memory_usage.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_missing.py b/python/cudf/cudf/tests/indexes/test_missing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_missing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_modifying.py b/python/cudf/cudf/tests/indexes/test_modifying.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_modifying.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_multiindex_compat.py b/python/cudf/cudf/tests/indexes/test_multiindex_compat.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_multiindex_compat.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_numeric.py b/python/cudf/cudf/tests/indexes/test_numeric.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_numeric.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_properties.py b/python/cudf/cudf/tests/indexes/test_properties.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_properties.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_selecting.py b/python/cudf/cudf/tests/indexes/test_selecting.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_selecting.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_sorting.py b/python/cudf/cudf/tests/indexes/test_sorting.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_sorting.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/test_time_specific.py b/python/cudf/cudf/tests/indexes/test_time_specific.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/test_time_specific.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/timedelta/__init__.py b/python/cudf/cudf/tests/indexes/timedelta/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/indexes/timedelta/test_components.py b/python/cudf/cudf/tests/indexes/timedelta/test_components.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/timedelta/test_components.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/timedelta/test_constructing.py b/python/cudf/cudf/tests/indexes/timedelta/test_constructing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/timedelta/test_constructing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/indexes/timedelta/test_conversion.py b/python/cudf/cudf/tests/indexes/timedelta/test_conversion.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/indexes/timedelta/test_conversion.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/input_output/__init__.py b/python/cudf/cudf/tests/input_output/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/input_output/test_avro.py b/python/cudf/cudf/tests/input_output/test_avro.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/input_output/test_avro.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/input_output/test_csv.py b/python/cudf/cudf/tests/input_output/test_csv.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/input_output/test_csv.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/input_output/test_feather.py b/python/cudf/cudf/tests/input_output/test_feather.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/input_output/test_feather.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/input_output/test_hdf5.py b/python/cudf/cudf/tests/input_output/test_hdf5.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/input_output/test_hdf5.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/input_output/test_json.py b/python/cudf/cudf/tests/input_output/test_json.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/input_output/test_json.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/input_output/test_orc.py b/python/cudf/cudf/tests/input_output/test_orc.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/input_output/test_orc.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/input_output/test_parquet.py b/python/cudf/cudf/tests/input_output/test_parquet.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/input_output/test_parquet.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/input_output/test_text.py b/python/cudf/cudf/tests/input_output/test_text.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/input_output/test_text.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/lists/__init__.py b/python/cudf/cudf/tests/lists/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/lists/test_list_methods.py b/python/cudf/cudf/tests/lists/test_list_methods.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/lists/test_list_methods.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/options/__init__.py b/python/cudf/cudf/tests/options/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/options/test_options.py b/python/cudf/cudf/tests/options/test_options.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/options/test_options.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/__init__.py b/python/cudf/cudf/tests/series/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/series/test_accessors.py b/python/cudf/cudf/tests/series/test_accessors.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_accessors.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_attributes.py b/python/cudf/cudf/tests/series/test_attributes.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_attributes.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_binary_operations.py b/python/cudf/cudf/tests/series/test_binary_operations.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_binary_operations.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_categorial.py b/python/cudf/cudf/tests/series/test_categorial.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_categorial.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_combining.py b/python/cudf/cudf/tests/series/test_combining.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_combining.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_computation.py b/python/cudf/cudf/tests/series/test_computation.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_computation.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_constructing.py b/python/cudf/cudf/tests/series/test_constructing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_constructing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_conversion.py b/python/cudf/cudf/tests/series/test_conversion.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_conversion.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_datetimelike.py b/python/cudf/cudf/tests/series/test_datetimelike.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_datetimelike.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_function_application.py b/python/cudf/cudf/tests/series/test_function_application.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_function_application.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_indexing.py b/python/cudf/cudf/tests/series/test_indexing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_indexing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_io_serialization.py b/python/cudf/cudf/tests/series/test_io_serialization.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_io_serialization.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_missing.py b/python/cudf/cudf/tests/series/test_missing.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_missing.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_reshaping.py b/python/cudf/cudf/tests/series/test_reshaping.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_reshaping.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_selecting.py b/python/cudf/cudf/tests/series/test_selecting.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_selecting.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_sorting.py b/python/cudf/cudf/tests/series/test_sorting.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_sorting.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/series/test_timeseries.py b/python/cudf/cudf/tests/series/test_timeseries.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/series/test_timeseries.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/strings/__init__.py b/python/cudf/cudf/tests/strings/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/strings/test_string_methods.py b/python/cudf/cudf/tests/strings/test_string_methods.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/strings/test_string_methods.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/structs/__init__.py b/python/cudf/cudf/tests/structs/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/structs/test_struct_methods.py b/python/cudf/cudf/tests/structs/test_struct_methods.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/structs/test_struct_methods.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/text/__init__.py b/python/cudf/cudf/tests/text/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/text/test_subword_tokenizer.py b/python/cudf/cudf/tests/text/test_subword_tokenizer.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/text/test_subword_tokenizer.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION. diff --git a/python/cudf/cudf/tests/window/__init__.py b/python/cudf/cudf/tests/window/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/cudf/cudf/tests/window/test_rolling.py b/python/cudf/cudf/tests/window/test_rolling.py new file mode 100644 index 00000000000..06777c8e6af --- /dev/null +++ b/python/cudf/cudf/tests/window/test_rolling.py @@ -0,0 +1 @@ +# Copyright (c) 2023, NVIDIA CORPORATION.