Skip to content

Commit 5a6aab3

Browse files
committed
Undo windows test skips
1 parent 179f4c8 commit 5a6aab3

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

Diff for: xarray/tests/test_units.py

-21
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import functools
44
import operator
5-
import sys
65

76
import numpy as np
87
import pandas as pd
@@ -1513,10 +1512,6 @@ def test_dot_dataarray(dtype):
15131512

15141513

15151514
class TestVariable:
1516-
@pytest.mark.skipif(
1517-
(sys.version_info >= (3, 11)) and sys.platform.startswith("win"),
1518-
reason="fails for some reason on win and 3.11, GH7971",
1519-
)
15201515
@pytest.mark.parametrize(
15211516
"func",
15221517
(
@@ -2348,10 +2343,6 @@ def test_repr(self, func, variant, dtype):
23482343
# warnings or errors, but does not check the result
23492344
func(data_array)
23502345

2351-
@pytest.mark.skipif(
2352-
(sys.version_info >= (3, 11)) and sys.platform.startswith("win"),
2353-
reason="fails for some reason on win and 3.11, GH7971",
2354-
)
23552346
@pytest.mark.parametrize(
23562347
"func",
23572348
(
@@ -2429,10 +2420,6 @@ def test_aggregation(self, func, dtype):
24292420
assert_units_equal(expected, actual)
24302421
assert_allclose(expected, actual)
24312422

2432-
@pytest.mark.skipif(
2433-
(sys.version_info >= (3, 11)) and sys.platform.startswith("win"),
2434-
reason="fails for some reason on win and 3.11, GH7971",
2435-
)
24362423
@pytest.mark.parametrize(
24372424
"func",
24382425
(
@@ -4085,10 +4072,6 @@ def test_repr(self, func, variant, dtype):
40854072
# warnings or errors, but does not check the result
40864073
func(ds)
40874074

4088-
@pytest.mark.skipif(
4089-
(sys.version_info >= (3, 11)) and sys.platform.startswith("win"),
4090-
reason="fails for some reason on win and 3.11, GH7971",
4091-
)
40924075
@pytest.mark.parametrize(
40934076
"func",
40944077
(
@@ -5647,10 +5630,6 @@ def test_merge(self, variant, unit, error, dtype):
56475630

56485631
@requires_dask
56495632
class TestPintWrappingDask:
5650-
@pytest.mark.skipif(
5651-
version.parse(pint.__version__) <= version.parse("0.21"),
5652-
reason="pint didn't support dask properly before 0.21",
5653-
)
56545633
def test_duck_array_ops(self):
56555634
import dask.array
56565635

0 commit comments

Comments
 (0)