diff --git a/lib/spack/spack/test/cmd/dependencies.py b/lib/spack/spack/test/cmd/dependencies.py index 03c4288b968..3d4671f6389 100644 --- a/lib/spack/spack/test/cmd/dependencies.py +++ b/lib/spack/spack/test/cmd/dependencies.py @@ -4,7 +4,6 @@ # SPDX-License-Identifier: (Apache-2.0 OR MIT) import re -import sys import pytest @@ -18,8 +17,6 @@ mpis = ["low-priority-provider", "mpich", "mpich2", "multi-provider-mpi", "zmpi"] mpi_deps = ["fake"] -pytestmark = pytest.mark.skipif(sys.platform == "win32", reason="does not run on windows") - def test_direct_dependencies(mock_packages): out = dependencies("mpileaks") diff --git a/lib/spack/spack/test/cmd/dependents.py b/lib/spack/spack/test/cmd/dependents.py index 88f7fb21f75..16b81f1361e 100644 --- a/lib/spack/spack/test/cmd/dependents.py +++ b/lib/spack/spack/test/cmd/dependents.py @@ -4,7 +4,6 @@ # SPDX-License-Identifier: (Apache-2.0 OR MIT) import re -import sys import pytest @@ -15,8 +14,6 @@ dependents = SpackCommand("dependents") -pytestmark = pytest.mark.skipif(sys.platform == "win32", reason="does not run on windows") - def test_immediate_dependents(mock_packages): out = dependents("libelf")