Enable config values tests on windows (#36969)

This commit is contained in:
markus-ferrell
2023-04-21 08:15:09 -04:00
committed by GitHub
parent ba255cf5ec
commit 962df6334d

View File

@@ -2,15 +2,12 @@
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
import sys
import pytest
import spack.spec
import spack.store
pytestmark = pytest.mark.skipif(sys.platform == "win32", reason="does not run on windows")
@pytest.mark.parametrize("hash_length", [1, 2, 3, 4, 5, 9])
@pytest.mark.usefixtures("mock_packages")