From 3edb0447069ee60fbbfefa81a8c4fe7b86c756d3 Mon Sep 17 00:00:00 2001 From: markus-ferrell <116021216+markus-ferrell@users.noreply.github.com> Date: Tue, 11 Apr 2023 17:30:40 -0400 Subject: [PATCH] Windows testing: reenable tests for "spack dependents" (#36786) All the tests worked out of the box. This just removes the skip statements. --- lib/spack/spack/test/cmd/dependencies.py | 3 --- lib/spack/spack/test/cmd/dependents.py | 3 --- 2 files changed, 6 deletions(-) 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")