diff options
author | markus-ferrell <116021216+markus-ferrell@users.noreply.github.com> | 2023-07-18 15:33:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-18 12:33:52 -0700 |
commit | b710778bda98fec5b01196a04ecdd4ecadb3bd20 (patch) | |
tree | 6ca351c0cae79f96faeef8113d5761a15a14dc1f /lib | |
parent | a965fe9354f8ae67e6dbf821f1810baa04d9dacf (diff) | |
download | spack-b710778bda98fec5b01196a04ecdd4ecadb3bd20.tar.gz spack-b710778bda98fec5b01196a04ecdd4ecadb3bd20.tar.bz2 spack-b710778bda98fec5b01196a04ecdd4ecadb3bd20.tar.xz spack-b710778bda98fec5b01196a04ecdd4ecadb3bd20.zip |
Windows testing: enable architecture test (#36973)
Works out of the box: remove skip.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/test/architecture.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/spack/spack/test/architecture.py b/lib/spack/spack/test/architecture.py index f00d66ad32..db28f42227 100644 --- a/lib/spack/spack/test/architecture.py +++ b/lib/spack/spack/test/architecture.py @@ -4,7 +4,6 @@ # SPDX-License-Identifier: (Apache-2.0 OR MIT) import os import platform -import sys import pytest @@ -59,7 +58,6 @@ def test_platform(current_host_platform): assert str(detected_platform) == str(current_host_platform) -@pytest.mark.skipif(sys.platform == "win32", reason="Not supported on Windows (yet)") def test_user_input_combination(config, target_str, os_str): """Test for all the valid user input combinations that both the target and the operating system match. |