Windows testing: enable architecture test (#36973)

Works out of the box: remove skip.
This commit is contained in:
markus-ferrell 2023-07-18 15:33:52 -04:00 committed by GitHub
parent a965fe9354
commit b710778bda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,6 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
import os import os
import platform import platform
import sys
import pytest import pytest
@ -59,7 +58,6 @@ def test_platform(current_host_platform):
assert str(detected_platform) == str(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): def test_user_input_combination(config, target_str, os_str):
"""Test for all the valid user input combinations that both the target and """Test for all the valid user input combinations that both the target and
the operating system match. the operating system match.