Windows testing: reenable tests for "spack dependents" (#36786)

All the tests worked out of the box. This just removes the skip statements.
This commit is contained in:
markus-ferrell 2023-04-11 17:30:40 -04:00 committed by GitHub
parent 0e9b5a05e8
commit 3edb044706
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 6 deletions

View File

@ -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")

View File

@ -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")