diff --git a/tests/compliance/date/test_date_compliance.py b/tests/compliance/date/test_date_compliance.py index 6281986..e19caf7 100644 --- a/tests/compliance/date/test_date_compliance.py +++ b/tests/compliance/date/test_date_compliance.py @@ -27,11 +27,18 @@ import db_dtypes -class TestDtype(base.BaseDtypeTests): +# TODO(https://github.com/googleapis/python-db-dtypes-pandas/issues/87): Add +# compliance tests for arithmetic operations. + +# TODO(https://github.com/googleapis/python-db-dtypes-pandas/issues/78): Add +# compliance tests for reduction operations. + + +class TestComparisonOps(base.BaseComparisonOpsTests): pass -class TestInterface(base.BaseInterfaceTests): +class TestCasting(base.BaseCastingTests): pass @@ -39,7 +46,7 @@ class TestConstructors(base.BaseConstructorsTests): pass -class TestReshaping(base.BaseReshapingTests): +class TestDtype(base.BaseDtypeTests): pass @@ -47,12 +54,20 @@ class TestGetitem(base.BaseGetitemTests): pass -class TestMissing(base.BaseMissingTests): +class TestGroupby(base.BaseGroupbyTests): pass -# TODO(https://github.com/googleapis/python-db-dtypes-pandas/issues/78): Add -# compliance tests for reduction operations. +class TestIndex(base.BaseIndexTests): + pass + + +class TestInterface(base.BaseInterfaceTests): + pass + + +class TestMissing(base.BaseMissingTests): + pass class TestMethods(base.BaseMethodsTests): @@ -76,15 +91,7 @@ def test_value_counts(self, all_data, dropna): self.assert_series_equal(result, expected) -class TestCasting(base.BaseCastingTests): - pass - - -class TestGroupby(base.BaseGroupbyTests): - pass - - -class TestSetitem(base.BaseSetitemTests): +class TestParsing(base.BaseParsingTests): pass @@ -92,9 +99,9 @@ class TestPrinting(base.BasePrintingTests): pass -# TODO(https://github.com/googleapis/python-db-dtypes-pandas/issues/78): Add -# compliance tests for arithmetic operations. +class TestReshaping(base.BaseReshapingTests): + pass -class TestComparisonOps(base.BaseComparisonOpsTests): +class TestSetitem(base.BaseSetitemTests): pass diff --git a/tests/compliance/date/test_date_compliance_1_5.py b/tests/compliance/date/test_date_compliance_1_5.py index 9c6da24..e8f2c93 100644 --- a/tests/compliance/date/test_date_compliance_1_5.py +++ b/tests/compliance/date/test_date_compliance_1_5.py @@ -29,7 +29,3 @@ class Test2DCompat(base.NDArrayBacked2DTests): pass - - -class TestIndex(base.BaseIndexTests): - pass