skip test which is causing spurious failures on Windows (#42832)
This commit is contained in:
parent
02137dda17
commit
5c26ce5385
1 changed files with 3 additions and 0 deletions
|
@ -94,6 +94,9 @@ def test_get_executables(working_env, mock_executable):
|
|||
external = SpackCommand("external")
|
||||
|
||||
|
||||
# TODO: this test should be made to work, but in the meantime it is
|
||||
# causing intermittent (spurious) CI failures on all PRs
|
||||
@pytest.mark.skipif(sys.platform == "win32", reason="Test fails intermittently on Windows")
|
||||
def test_find_external_cmd_not_buildable(mutable_config, working_env, mock_executable):
|
||||
"""When the user invokes 'spack external find --not-buildable', the config
|
||||
for any package where Spack finds an external version should be marked as
|
||||
|
|
Loading…
Reference in a new issue