From 9fda0f0e83334be0a2c12c397b96aed447b95407 Mon Sep 17 00:00:00 2001 From: iuvbio Date: Sun, 23 Feb 2020 16:54:11 +0100 Subject: [PATCH] move tests to top level dir, remove __init__ --- pandas_ods_reader/tests/__init__.py | 0 .../tests => tests}/rsc/example_col_lengths.ods | Bin .../rsc/example_duplicated_column_names.ods | Bin .../tests => tests}/rsc/example_headers.ods | Bin .../tests => tests}/rsc/example_missing_header.ods | Bin .../tests => tests}/rsc/example_no_headers.ods | Bin .../tests => tests}/rsc/mixed_dtypes.ods | Bin {pandas_ods_reader/tests => tests}/test_read_ods.py | 0 8 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 pandas_ods_reader/tests/__init__.py rename {pandas_ods_reader/tests => tests}/rsc/example_col_lengths.ods (100%) rename {pandas_ods_reader/tests => tests}/rsc/example_duplicated_column_names.ods (100%) rename {pandas_ods_reader/tests => tests}/rsc/example_headers.ods (100%) rename {pandas_ods_reader/tests => tests}/rsc/example_missing_header.ods (100%) rename {pandas_ods_reader/tests => tests}/rsc/example_no_headers.ods (100%) rename {pandas_ods_reader/tests => tests}/rsc/mixed_dtypes.ods (100%) rename {pandas_ods_reader/tests => tests}/test_read_ods.py (100%) diff --git a/pandas_ods_reader/tests/__init__.py b/pandas_ods_reader/tests/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/pandas_ods_reader/tests/rsc/example_col_lengths.ods b/tests/rsc/example_col_lengths.ods similarity index 100% rename from pandas_ods_reader/tests/rsc/example_col_lengths.ods rename to tests/rsc/example_col_lengths.ods diff --git a/pandas_ods_reader/tests/rsc/example_duplicated_column_names.ods b/tests/rsc/example_duplicated_column_names.ods similarity index 100% rename from pandas_ods_reader/tests/rsc/example_duplicated_column_names.ods rename to tests/rsc/example_duplicated_column_names.ods diff --git a/pandas_ods_reader/tests/rsc/example_headers.ods b/tests/rsc/example_headers.ods similarity index 100% rename from pandas_ods_reader/tests/rsc/example_headers.ods rename to tests/rsc/example_headers.ods diff --git a/pandas_ods_reader/tests/rsc/example_missing_header.ods b/tests/rsc/example_missing_header.ods similarity index 100% rename from pandas_ods_reader/tests/rsc/example_missing_header.ods rename to tests/rsc/example_missing_header.ods diff --git a/pandas_ods_reader/tests/rsc/example_no_headers.ods b/tests/rsc/example_no_headers.ods similarity index 100% rename from pandas_ods_reader/tests/rsc/example_no_headers.ods rename to tests/rsc/example_no_headers.ods diff --git a/pandas_ods_reader/tests/rsc/mixed_dtypes.ods b/tests/rsc/mixed_dtypes.ods similarity index 100% rename from pandas_ods_reader/tests/rsc/mixed_dtypes.ods rename to tests/rsc/mixed_dtypes.ods diff --git a/pandas_ods_reader/tests/test_read_ods.py b/tests/test_read_ods.py similarity index 100% rename from pandas_ods_reader/tests/test_read_ods.py rename to tests/test_read_ods.py