diff options
author | markus-ferrell <116021216+markus-ferrell@users.noreply.github.com> | 2023-07-18 17:42:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-18 14:42:26 -0700 |
commit | f24f98a1e23f802d42fcc1f2c99e37548346c150 (patch) | |
tree | 0a3689d17e494d2c88885dfc1e21cfaa0be471b0 /lib | |
parent | 64361e1fc70a578a801e1a800461fa79e026ebef (diff) | |
download | spack-f24f98a1e23f802d42fcc1f2c99e37548346c150.tar.gz spack-f24f98a1e23f802d42fcc1f2c99e37548346c150.tar.bz2 spack-f24f98a1e23f802d42fcc1f2c99e37548346c150.tar.xz spack-f24f98a1e23f802d42fcc1f2c99e37548346c150.zip |
Windows testing: enable bootstrap test (#36972)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/test/bootstrap.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/spack/spack/test/bootstrap.py b/lib/spack/spack/test/bootstrap.py index 7eee7a21e3..3d1a066d88 100644 --- a/lib/spack/spack/test/bootstrap.py +++ b/lib/spack/spack/test/bootstrap.py @@ -2,7 +2,6 @@ # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: (Apache-2.0 OR MIT) -import sys import pytest @@ -166,7 +165,6 @@ def test_nested_use_of_context_manager(mutable_config): assert spack.config.config == user_config -@pytest.mark.skipif(sys.platform == "win32", reason="Not supported on Windows (yet)") @pytest.mark.parametrize("expected_missing", [False, True]) def test_status_function_find_files( mutable_config, mock_executable, tmpdir, monkeypatch, expected_missing |