Skip to content

Commit b31329a

Browse files
committed
Change priority of conda channels in check MKL i/f workflow
1 parent 92a0068 commit b31329a

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/check-mkl-interfaces.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Merge conda env files
5050
run: |
51-
conda-merge ${{ env.build-with-oneapi-env }} ${{ env.dpctl-pkg-env }} ${{ env.oneapi-pkgs-env }} > ${{ env.environment-file }}
51+
conda-merge ${{ env.dpctl-pkg-env }} ${{ env.oneapi-pkgs-env }} ${{ env.build-with-oneapi-env }} > ${{ env.environment-file }}
5252
cat ${{ env.environment-file }}
5353
5454
- name: Upload artifact

dpnp/tests/test_statistics.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
get_float_complex_dtypes,
2020
get_float_dtypes,
2121
has_support_aspect64,
22-
is_win_platform,
2322
numpy_version,
2423
)
2524
from .third_party.cupy.testing import with_requires
@@ -198,7 +197,6 @@ def _get_kwargs(mode=None, method=None):
198197
def setup_method(self):
199198
numpy.random.seed(0)
200199

201-
# @pytest.mark.skipif(is_win_platform(), reason="SAT-7784")
202200
@pytest.mark.parametrize(
203201
"a, v", [([1], [1, 2, 3]), ([1, 2, 3], [1]), ([1, 2, 3], [1, 2])]
204202
)
@@ -218,7 +216,6 @@ def test_correlate(self, a, v, mode, dtype, method):
218216

219217
assert_dtype_allclose(result, expected)
220218

221-
# @pytest.mark.skipif(is_win_platform(), reason="SAT-7784")
222219
@pytest.mark.parametrize("a_size", [1, 100, 10000])
223220
@pytest.mark.parametrize("v_size", [1, 100, 10000])
224221
@pytest.mark.parametrize("mode", ["full", "valid", "same"])

0 commit comments

Comments
 (0)