Enable build system guess tests on windows (#36971)
This commit is contained in:
parent
4991f0e484
commit
1df4afb53f
@ -715,7 +715,7 @@ def __call__(self, stage, url):
|
|||||||
output = tar("--exclude=*/*/*", "-tf", stage.archive_file, output=str)
|
output = tar("--exclude=*/*/*", "-tf", stage.archive_file, output=str)
|
||||||
except ProcessError:
|
except ProcessError:
|
||||||
output = ""
|
output = ""
|
||||||
lines = output.split("\n")
|
lines = output.splitlines()
|
||||||
|
|
||||||
# Determine the build system based on the files contained
|
# Determine the build system based on the files contained
|
||||||
# in the archive.
|
# in the archive.
|
||||||
|
@ -3,8 +3,6 @@
|
|||||||
#
|
#
|
||||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||||
|
|
||||||
import sys
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
import spack.cmd.create
|
import spack.cmd.create
|
||||||
@ -12,8 +10,6 @@
|
|||||||
import spack.util.executable
|
import spack.util.executable
|
||||||
import spack.util.url as url_util
|
import spack.util.url as url_util
|
||||||
|
|
||||||
pytestmark = pytest.mark.skipif(sys.platform == "win32", reason="does not run on windows")
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(
|
@pytest.fixture(
|
||||||
scope="function",
|
scope="function",
|
||||||
|
Loading…
Reference in New Issue
Block a user