diff options
author | markus-ferrell <116021216+markus-ferrell@users.noreply.github.com> | 2023-04-11 17:30:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 14:30:40 -0700 |
commit | 3edb0447069ee60fbbfefa81a8c4fe7b86c756d3 (patch) | |
tree | c8a84ce6e8d8154e993e3f0c7c6601828d44dd33 /lib | |
parent | 0e9b5a05e8b3cb037923f3c299a988d6952fd253 (diff) | |
download | spack-3edb0447069ee60fbbfefa81a8c4fe7b86c756d3.tar.gz spack-3edb0447069ee60fbbfefa81a8c4fe7b86c756d3.tar.bz2 spack-3edb0447069ee60fbbfefa81a8c4fe7b86c756d3.tar.xz spack-3edb0447069ee60fbbfefa81a8c4fe7b86c756d3.zip |
Windows testing: reenable tests for "spack dependents" (#36786)
All the tests worked out of the box. This just removes the skip statements.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/test/cmd/dependencies.py | 3 | ||||
-rw-r--r-- | lib/spack/spack/test/cmd/dependents.py | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/lib/spack/spack/test/cmd/dependencies.py b/lib/spack/spack/test/cmd/dependencies.py index 03c4288b96..3d4671f638 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 @@ dependencies = SpackCommand("dependencies") 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 88f7fb21f7..16b81f1361 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 @@ from spack.main import SpackCommand 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") |