|
2 | 2 |
|
3 | 3 | import functools
|
4 | 4 | import operator
|
5 |
| -import sys |
6 | 5 |
|
7 | 6 | import numpy as np
|
8 | 7 | import pandas as pd
|
@@ -1513,10 +1512,6 @@ def test_dot_dataarray(dtype):
|
1513 | 1512 |
|
1514 | 1513 |
|
1515 | 1514 | 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 |
| - ) |
1520 | 1515 | @pytest.mark.parametrize(
|
1521 | 1516 | "func",
|
1522 | 1517 | (
|
@@ -2348,10 +2343,6 @@ def test_repr(self, func, variant, dtype):
|
2348 | 2343 | # warnings or errors, but does not check the result
|
2349 | 2344 | func(data_array)
|
2350 | 2345 |
|
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 |
| - ) |
2355 | 2346 | @pytest.mark.parametrize(
|
2356 | 2347 | "func",
|
2357 | 2348 | (
|
@@ -2429,10 +2420,6 @@ def test_aggregation(self, func, dtype):
|
2429 | 2420 | assert_units_equal(expected, actual)
|
2430 | 2421 | assert_allclose(expected, actual)
|
2431 | 2422 |
|
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 |
| - ) |
2436 | 2423 | @pytest.mark.parametrize(
|
2437 | 2424 | "func",
|
2438 | 2425 | (
|
@@ -4085,10 +4072,6 @@ def test_repr(self, func, variant, dtype):
|
4085 | 4072 | # warnings or errors, but does not check the result
|
4086 | 4073 | func(ds)
|
4087 | 4074 |
|
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 |
| - ) |
4092 | 4075 | @pytest.mark.parametrize(
|
4093 | 4076 | "func",
|
4094 | 4077 | (
|
@@ -5647,10 +5630,6 @@ def test_merge(self, variant, unit, error, dtype):
|
5647 | 5630 |
|
5648 | 5631 | @requires_dask
|
5649 | 5632 | 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 |
| - ) |
5654 | 5633 | def test_duck_array_ops(self):
|
5655 | 5634 | import dask.array
|
5656 | 5635 |
|
|
0 commit comments