1
1
from __future__ import annotations
2
2
3
- import pandas as pd
4
3
import pytest
5
4
from packaging .version import Version
6
- from packaging .version import parse
7
5
8
6
from tests .utils import BaseHandler
9
7
from tests .utils import convert_to_standard_compliant_dataframe
10
8
from tests .utils import integer_dataframe_1
9
+ from tests .utils import pandas_version
11
10
12
11
13
12
def test_name (library : BaseHandler ) -> None :
@@ -17,15 +16,26 @@ def test_name(library: BaseHandler) -> None:
17
16
18
17
19
18
def test_pandas_name_if_0_named_column () -> None :
19
+ import pandas as pd
20
+
20
21
df = convert_to_standard_compliant_dataframe (pd .DataFrame ({0 : [1 , 2 , 3 ]}))
21
22
assert df .column_names == [0 ] # type: ignore[comparison-overlap]
22
23
assert [col .name for col in df .iter_columns ()] == [0 ] # type: ignore[comparison-overlap]
23
24
24
25
25
- @pytest .mark .skipif (
26
- parse (pd .__version__ ) < Version ("2.1.0" ),
27
- reason = "before consoritum standard" ,
28
- )
29
- def test_invalid_name_pandas () -> None :
30
- with pytest .raises (ValueError ):
31
- pd .Series ([1 , 2 , 3 ], name = 0 ).__column_consortium_standard__ ()
26
+ def test_invalid_column_name (library : BaseHandler ) -> None :
27
+ if library .name in ("pandas-numpy" , "pandas-nullable" ):
28
+ import pandas as pd
29
+
30
+ if pandas_version () < Version ("2.1.0" ): # pragma: no cover
31
+ pytest .skip (reason = "before consoritum standard" )
32
+ with pytest .raises (ValueError ):
33
+ pd .Series ([1 , 2 , 3 ], name = 0 ).__column_consortium_standard__ ()
34
+ elif library .name == "modin" :
35
+ import modin .pandas as pd
36
+
37
+ with pytest .raises (ValueError ):
38
+ pd .Series ([1 , 2 , 3 ], name = 0 ).__column_consortium_standard__ ()
39
+ else : # pragma: no cover
40
+ msg = f"Not supported library: { library } "
41
+ raise AssertionError (msg )
0 commit comments