9
9
import numpy as np
10
10
import pytest
11
11
12
- from pandas .compat import PY38
13
12
import pandas .util ._test_decorators as td
14
13
15
14
from pandas import DataFrame
@@ -364,10 +363,6 @@ def test_na_empty_elem_option(datapath, parser):
364
363
# ATTR_COLS
365
364
366
365
367
- @pytest .mark .skipif (
368
- not PY38 ,
369
- reason = ("etree alpha ordered attributes < py 3.8" ),
370
- )
371
366
def test_attrs_cols_nan_output (datapath , parser ):
372
367
expected = """\
373
368
<?xml version='1.0' encoding='utf-8'?>
@@ -383,10 +378,6 @@ def test_attrs_cols_nan_output(datapath, parser):
383
378
assert output == expected
384
379
385
380
386
- @pytest .mark .skipif (
387
- not PY38 ,
388
- reason = ("etree alpha ordered attributes < py3.8" ),
389
- )
390
381
def test_attrs_cols_prefix (datapath , parser ):
391
382
expected = """\
392
383
<?xml version='1.0' encoding='utf-8'?>
@@ -541,10 +532,6 @@ def test_hierarchical_columns(datapath, parser):
541
532
assert output == expected
542
533
543
534
544
- @pytest .mark .skipif (
545
- not PY38 ,
546
- reason = ("etree alpha ordered attributes < py3.8" ),
547
- )
548
535
def test_hierarchical_attrs_columns (datapath , parser ):
549
536
expected = """\
550
537
<?xml version='1.0' encoding='utf-8'?>
@@ -614,10 +601,6 @@ def test_multi_index(datapath, parser):
614
601
assert output == expected
615
602
616
603
617
- @pytest .mark .skipif (
618
- not PY38 ,
619
- reason = ("etree alpha ordered attributes < py3.8" ),
620
- )
621
604
def test_multi_index_attrs_cols (datapath , parser ):
622
605
expected = """\
623
606
<?xml version='1.0' encoding='utf-8'?>
0 commit comments