Remove the "install_mockery_mutable_config" fixture (#45129)

This fixture was introduced in #16429, and made
redundant in #39024
This commit is contained in:
Massimiliano Culpo 2024-07-09 11:23:49 +02:00 committed by GitHub
parent 15efcbe042
commit 54ee7d4165
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 42 additions and 123 deletions

View File

@ -105,11 +105,11 @@ def config_directory(tmpdir_factory):
@pytest.fixture(scope="function") @pytest.fixture(scope="function")
def default_config(tmpdir, config_directory, monkeypatch, install_mockery_mutable_config): def default_config(tmpdir, config_directory, monkeypatch, install_mockery):
# This fixture depends on install_mockery_mutable_config to ensure # This fixture depends on install_mockery to ensure
# there is a clear order of initialization. The substitution of the # there is a clear order of initialization. The substitution of the
# config scopes here is done on top of the substitution that comes with # config scopes here is done on top of the substitution that comes with
# install_mockery_mutable_config # install_mockery
mutable_dir = tmpdir.mkdir("mutable_config").join("tmp") mutable_dir = tmpdir.mkdir("mutable_config").join("tmp")
config_directory.copy(mutable_dir) config_directory.copy(mutable_dir)
@ -398,9 +398,7 @@ def fake_dag_hash(spec, length=None):
return "tal4c7h4z0gqmixb1eqa92mjoybxn5l6"[:length] return "tal4c7h4z0gqmixb1eqa92mjoybxn5l6"[:length]
@pytest.mark.usefixtures( @pytest.mark.usefixtures("install_mockery", "mock_packages", "mock_fetch", "test_mirror")
"install_mockery_mutable_config", "mock_packages", "mock_fetch", "test_mirror"
)
def test_spec_needs_rebuild(monkeypatch, tmpdir): def test_spec_needs_rebuild(monkeypatch, tmpdir):
"""Make sure needs_rebuild properly compares remote hash """Make sure needs_rebuild properly compares remote hash
against locally computed one, avoiding unnecessary rebuilds""" against locally computed one, avoiding unnecessary rebuilds"""
@ -429,7 +427,7 @@ def test_spec_needs_rebuild(monkeypatch, tmpdir):
assert rebuild assert rebuild
@pytest.mark.usefixtures("install_mockery_mutable_config", "mock_packages", "mock_fetch") @pytest.mark.usefixtures("install_mockery", "mock_packages", "mock_fetch")
def test_generate_index_missing(monkeypatch, tmpdir, mutable_config): def test_generate_index_missing(monkeypatch, tmpdir, mutable_config):
"""Ensure spack buildcache index only reports available packages""" """Ensure spack buildcache index only reports available packages"""
@ -587,9 +585,7 @@ def test_update_sbang(tmpdir, test_mirror):
str(archspec.cpu.host().family) != "x86_64", str(archspec.cpu.host().family) != "x86_64",
reason="test data uses gcc 4.5.0 which does not support aarch64", reason="test data uses gcc 4.5.0 which does not support aarch64",
) )
def test_install_legacy_buildcache_layout( def test_install_legacy_buildcache_layout(mutable_config, compiler_factory, install_mockery):
mutable_config, compiler_factory, install_mockery_mutable_config
):
"""Legacy buildcache layout involved a nested archive structure """Legacy buildcache layout involved a nested archive structure
where the .spack file contained a repeated spec.json and another where the .spack file contained a repeated spec.json and another
compressed archive file containing the install tree. This test compressed archive file containing the install tree. This test

View File

@ -189,12 +189,7 @@ def test_buildcache_autopush(tmp_path, install_mockery, mock_fetch):
def test_buildcache_sync( def test_buildcache_sync(
mutable_mock_env_path, mutable_mock_env_path, install_mockery, mock_packages, mock_fetch, mock_stage, tmpdir
install_mockery_mutable_config,
mock_packages,
mock_fetch,
mock_stage,
tmpdir,
): ):
""" """
Make sure buildcache sync works in an environment-aware manner, ignoring Make sure buildcache sync works in an environment-aware manner, ignoring
@ -323,7 +318,7 @@ def manifest_insert(manifest, spec, dest_url):
def test_buildcache_create_install( def test_buildcache_create_install(
mutable_mock_env_path, mutable_mock_env_path,
install_mockery_mutable_config, install_mockery,
mock_packages, mock_packages,
mock_fetch, mock_fetch,
mock_stage, mock_stage,

View File

@ -748,7 +748,7 @@ def test_ci_rebuild_mock_success(
tmpdir, tmpdir,
working_env, working_env,
mutable_mock_env_path, mutable_mock_env_path,
install_mockery_mutable_config, install_mockery,
mock_gnupghome, mock_gnupghome,
mock_stage, mock_stage,
mock_fetch, mock_fetch,
@ -782,7 +782,7 @@ def test_ci_rebuild_mock_failure_to_push(
tmpdir, tmpdir,
working_env, working_env,
mutable_mock_env_path, mutable_mock_env_path,
install_mockery_mutable_config, install_mockery,
mock_gnupghome, mock_gnupghome,
mock_stage, mock_stage,
mock_fetch, mock_fetch,
@ -820,7 +820,7 @@ def test_ci_rebuild(
tmpdir, tmpdir,
working_env, working_env,
mutable_mock_env_path, mutable_mock_env_path,
install_mockery_mutable_config, install_mockery,
mock_packages, mock_packages,
monkeypatch, monkeypatch,
mock_gnupghome, mock_gnupghome,
@ -1019,7 +1019,7 @@ def fake_dl_method(spec, *args, **kwargs):
def test_ci_generate_mirror_override( def test_ci_generate_mirror_override(
tmpdir, tmpdir,
mutable_mock_env_path, mutable_mock_env_path,
install_mockery_mutable_config, install_mockery,
mock_packages, mock_packages,
mock_fetch, mock_fetch,
mock_stage, mock_stage,
@ -1104,7 +1104,7 @@ def test_ci_generate_mirror_override(
def test_push_to_build_cache( def test_push_to_build_cache(
tmpdir, tmpdir,
mutable_mock_env_path, mutable_mock_env_path,
install_mockery_mutable_config, install_mockery,
mock_packages, mock_packages,
mock_fetch, mock_fetch,
mock_stage, mock_stage,

View File

@ -923,12 +923,7 @@ def test_cdash_configure_warning(tmpdir, mock_fetch, install_mockery, capfd):
@pytest.mark.not_on_windows("ArchSpec gives test platform debian rather than windows") @pytest.mark.not_on_windows("ArchSpec gives test platform debian rather than windows")
def test_compiler_bootstrap( def test_compiler_bootstrap(
install_mockery_mutable_config, install_mockery, mock_packages, mock_fetch, mock_archive, mutable_config, monkeypatch
mock_packages,
mock_fetch,
mock_archive,
mutable_config,
monkeypatch,
): ):
monkeypatch.setattr(spack.concretize.Concretizer, "check_for_compiler_existence", False) monkeypatch.setattr(spack.concretize.Concretizer, "check_for_compiler_existence", False)
spack.config.set("config:install_missing_compilers", True) spack.config.set("config:install_missing_compilers", True)
@ -940,13 +935,7 @@ def test_compiler_bootstrap(
@pytest.mark.not_on_windows("Binary mirrors not supported on windows") @pytest.mark.not_on_windows("Binary mirrors not supported on windows")
def test_compiler_bootstrap_from_binary_mirror( def test_compiler_bootstrap_from_binary_mirror(
install_mockery_mutable_config, install_mockery, mock_packages, mock_fetch, mock_archive, mutable_config, monkeypatch, tmpdir
mock_packages,
mock_fetch,
mock_archive,
mutable_config,
monkeypatch,
tmpdir,
): ):
""" """
Make sure installing compiler from buildcache registers compiler Make sure installing compiler from buildcache registers compiler
@ -982,12 +971,7 @@ def test_compiler_bootstrap_from_binary_mirror(
@pytest.mark.not_on_windows("ArchSpec gives test platform debian rather than windows") @pytest.mark.not_on_windows("ArchSpec gives test platform debian rather than windows")
@pytest.mark.regression("16221") @pytest.mark.regression("16221")
def test_compiler_bootstrap_already_installed( def test_compiler_bootstrap_already_installed(
install_mockery_mutable_config, install_mockery, mock_packages, mock_fetch, mock_archive, mutable_config, monkeypatch
mock_packages,
mock_fetch,
mock_archive,
mutable_config,
monkeypatch,
): ):
monkeypatch.setattr(spack.concretize.Concretizer, "check_for_compiler_existence", False) monkeypatch.setattr(spack.concretize.Concretizer, "check_for_compiler_existence", False)
spack.config.set("config:install_missing_compilers", True) spack.config.set("config:install_missing_compilers", True)
@ -1087,13 +1071,7 @@ def test_installation_fail_tests(install_mockery, mock_fetch, name, method):
@pytest.mark.not_on_windows("Buildcache not supported on windows") @pytest.mark.not_on_windows("Buildcache not supported on windows")
def test_install_use_buildcache( def test_install_use_buildcache(
capsys, capsys, mock_packages, mock_fetch, mock_archive, mock_binary_index, tmpdir, install_mockery
mock_packages,
mock_fetch,
mock_archive,
mock_binary_index,
tmpdir,
install_mockery_mutable_config,
): ):
""" """
Make sure installing with use-buildcache behaves correctly. Make sure installing with use-buildcache behaves correctly.
@ -1166,14 +1144,14 @@ def install_use_buildcache(opt):
@pytest.mark.not_on_windows("Windows logger I/O operation on closed file when install fails") @pytest.mark.not_on_windows("Windows logger I/O operation on closed file when install fails")
@pytest.mark.regression("34006") @pytest.mark.regression("34006")
@pytest.mark.disable_clean_stage_check @pytest.mark.disable_clean_stage_check
def test_padded_install_runtests_root(install_mockery_mutable_config, mock_fetch): def test_padded_install_runtests_root(install_mockery, mock_fetch):
spack.config.set("config:install_tree:padded_length", 255) spack.config.set("config:install_tree:padded_length", 255)
output = install("--test=root", "--no-cache", "test-build-callbacks", fail_on_error=False) output = install("--test=root", "--no-cache", "test-build-callbacks", fail_on_error=False)
assert output.count("method not implemented") == 1 assert output.count("method not implemented") == 1
@pytest.mark.regression("35337") @pytest.mark.regression("35337")
def test_report_filename_for_cdash(install_mockery_mutable_config, mock_fetch): def test_report_filename_for_cdash(install_mockery, mock_fetch):
"""Test that the temporary file used to write the XML for CDash is not the upload URL""" """Test that the temporary file used to write the XML for CDash is not the upload URL"""
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
spack.cmd.install.setup_parser(parser) spack.cmd.install.setup_parser(parser)

View File

@ -232,13 +232,7 @@ def test_mirror_name_collision(mutable_config):
def test_mirror_destroy( def test_mirror_destroy(
install_mockery_mutable_config, install_mockery, mock_packages, mock_fetch, mock_archive, mutable_config, monkeypatch, tmpdir
mock_packages,
mock_fetch,
mock_archive,
mutable_config,
monkeypatch,
tmpdir,
): ):
# Create a temp mirror directory for buildcache usage # Create a temp mirror directory for buildcache usage
mirror_dir = tmpdir.join("mirror_dir") mirror_dir = tmpdir.join("mirror_dir")

View File

@ -48,7 +48,7 @@ def test_test_dirty_flag(arguments, expected):
def test_test_dup_alias( def test_test_dup_alias(
mock_test_stage, mock_packages, mock_archive, mock_fetch, install_mockery_mutable_config, capfd mock_test_stage, mock_packages, mock_archive, mock_fetch, install_mockery, capfd
): ):
"""Ensure re-using an alias fails with suggestion to change.""" """Ensure re-using an alias fails with suggestion to change."""
install("libdwarf") install("libdwarf")
@ -63,9 +63,7 @@ def test_test_dup_alias(
assert "already exists" in out and "Try another alias" in out assert "already exists" in out and "Try another alias" in out
def test_test_output( def test_test_output(mock_test_stage, mock_packages, mock_archive, mock_fetch, install_mockery):
mock_test_stage, mock_packages, mock_archive, mock_fetch, install_mockery_mutable_config
):
"""Ensure output printed from pkgs is captured by output redirection.""" """Ensure output printed from pkgs is captured by output redirection."""
install("printing-package") install("printing-package")
spack_test("run", "--alias", "printpkg", "printing-package") spack_test("run", "--alias", "printpkg", "printing-package")
@ -91,13 +89,7 @@ def test_test_output(
"pkg_name,failure", [("test-error", "exited with status 1"), ("test-fail", "not callable")] "pkg_name,failure", [("test-error", "exited with status 1"), ("test-fail", "not callable")]
) )
def test_test_output_fails( def test_test_output_fails(
mock_packages, mock_packages, mock_archive, mock_fetch, install_mockery, mock_test_stage, pkg_name, failure
mock_archive,
mock_fetch,
install_mockery_mutable_config,
mock_test_stage,
pkg_name,
failure,
): ):
"""Confirm stand-alone test failure with expected outputs.""" """Confirm stand-alone test failure with expected outputs."""
install(pkg_name) install(pkg_name)
@ -111,9 +103,7 @@ def test_test_output_fails(
assert "See test log for details" in out assert "See test log for details" in out
@pytest.mark.usefixtures( @pytest.mark.usefixtures("mock_packages", "mock_archive", "mock_fetch", "install_mockery")
"mock_packages", "mock_archive", "mock_fetch", "install_mockery_mutable_config"
)
@pytest.mark.parametrize( @pytest.mark.parametrize(
"pkg_name,msgs", "pkg_name,msgs",
[ [
@ -147,13 +137,7 @@ def test_junit_output_with_failures(tmpdir, mock_test_stage, pkg_name, msgs):
def test_cdash_output_test_error( def test_cdash_output_test_error(
tmpdir, tmpdir, mock_fetch, install_mockery, mock_packages, mock_archive, mock_test_stage, capfd
mock_fetch,
install_mockery_mutable_config,
mock_packages,
mock_archive,
mock_test_stage,
capfd,
): ):
"""Confirm stand-alone test error expected outputs in CDash reporting.""" """Confirm stand-alone test error expected outputs in CDash reporting."""
install("test-error") install("test-error")
@ -173,12 +157,7 @@ def test_cdash_output_test_error(
def test_cdash_upload_clean_test( def test_cdash_upload_clean_test(
tmpdir, tmpdir, mock_fetch, install_mockery, mock_packages, mock_archive, mock_test_stage
mock_fetch,
install_mockery_mutable_config,
mock_packages,
mock_archive,
mock_test_stage,
): ):
install("printing-package") install("printing-package")
with tmpdir.as_cwd(): with tmpdir.as_cwd():
@ -227,7 +206,7 @@ def test_test_list_all(mock_packages):
) )
def test_test_list(mock_packages, mock_archive, mock_fetch, install_mockery_mutable_config): def test_test_list(mock_packages, mock_archive, mock_fetch, install_mockery):
pkg_with_tests = "printing-package" pkg_with_tests = "printing-package"
install(pkg_with_tests) install(pkg_with_tests)
output = spack_test("list") output = spack_test("list")
@ -293,7 +272,7 @@ def test_test_results_status(mock_packages, mock_test_stage, status):
@pytest.mark.regression("35337") @pytest.mark.regression("35337")
def test_report_filename_for_cdash(install_mockery_mutable_config, mock_fetch): def test_report_filename_for_cdash(install_mockery, mock_fetch):
"""Test that the temporary file used to write Testing.xml for CDash is not the upload URL""" """Test that the temporary file used to write Testing.xml for CDash is not the upload URL"""
name = "trivial" name = "trivial"
spec = spack.spec.Spec("trivial-smoke-test").concretized() spec = spack.spec.Spec("trivial-smoke-test").concretized()
@ -316,7 +295,7 @@ def test_report_filename_for_cdash(install_mockery_mutable_config, mock_fetch):
def test_test_output_multiple_specs( def test_test_output_multiple_specs(
mock_test_stage, mock_packages, mock_archive, mock_fetch, install_mockery_mutable_config mock_test_stage, mock_packages, mock_archive, mock_fetch, install_mockery
): ):
"""Ensure proper reporting for suite with skipped, failing, and passed tests.""" """Ensure proper reporting for suite with skipped, failing, and passed tests."""
install("test-error", "simple-standalone-test@0.9", "simple-standalone-test@1.0") install("test-error", "simple-standalone-test@0.9", "simple-standalone-test@1.0")

View File

@ -3063,9 +3063,7 @@ def test_spec_filters(specs, include, exclude, expected):
@pytest.mark.only_clingo("clingo only reuse feature being tested") @pytest.mark.only_clingo("clingo only reuse feature being tested")
@pytest.mark.regression("38484") @pytest.mark.regression("38484")
def test_git_ref_version_can_be_reused( def test_git_ref_version_can_be_reused(install_mockery, do_not_check_runtimes_on_reuse):
install_mockery_mutable_config, do_not_check_runtimes_on_reuse
):
first_spec = spack.spec.Spec("git-ref-package@git.2.1.5=2.1.5~opt").concretized() first_spec = spack.spec.Spec("git-ref-package@git.2.1.5=2.1.5~opt").concretized()
first_spec.package.do_install(fake=True, explicit=True) first_spec.package.do_install(fake=True, explicit=True)
@ -3084,7 +3082,7 @@ def test_git_ref_version_can_be_reused(
@pytest.mark.only_clingo("clingo only reuse feature being tested") @pytest.mark.only_clingo("clingo only reuse feature being tested")
@pytest.mark.parametrize("standard_version", ["2.0.0", "2.1.5", "2.1.6"]) @pytest.mark.parametrize("standard_version", ["2.0.0", "2.1.5", "2.1.6"])
def test_reuse_prefers_standard_over_git_versions( def test_reuse_prefers_standard_over_git_versions(
standard_version, install_mockery_mutable_config, do_not_check_runtimes_on_reuse standard_version, install_mockery, do_not_check_runtimes_on_reuse
): ):
""" """
order matters in this test. typically reuse would pick the highest versioned installed match order matters in this test. typically reuse would pick the highest versioned installed match

View File

@ -998,19 +998,6 @@ def temporary_store(tmpdir, request):
temporary_store_path.remove() temporary_store_path.remove()
@pytest.fixture(scope="function")
def install_mockery_mutable_config(temporary_store, mutable_config, mock_packages):
"""Hooks a fake install directory, DB, and stage directory into Spack.
This is specifically for tests which want to use 'install_mockery' but
also need to modify configuration (and hence would want to use
'mutable config'): 'install_mockery' does not support this.
"""
# We use a fake package, so temporarily disable checksumming
with spack.config.override("config:checksum", False):
yield
@pytest.fixture() @pytest.fixture()
def mock_fetch(mock_archive, monkeypatch): def mock_fetch(mock_archive, monkeypatch):
"""Fake the URL for a package so it downloads from a file.""" """Fake the URL for a package so it downloads from a file."""

View File

@ -293,7 +293,7 @@ def compilers(compiler, arch_spec):
], ],
) )
def test_package_run_test_install( def test_package_run_test_install(
install_mockery_mutable_config, mock_fetch, capfd, msg, installed, purpose, expected install_mockery, mock_fetch, capfd, msg, installed, purpose, expected
): ):
"""Confirm expected outputs from run_test for installed/not installed exe.""" """Confirm expected outputs from run_test for installed/not installed exe."""
s = spack.spec.Spec("trivial-smoke-test").concretized() s = spack.spec.Spec("trivial-smoke-test").concretized()
@ -314,9 +314,7 @@ def test_package_run_test_install(
(False, 1, str(spack.install_test.TestStatus.FAILED)), (False, 1, str(spack.install_test.TestStatus.FAILED)),
], ],
) )
def test_package_run_test_missing( def test_package_run_test_missing(install_mockery, mock_fetch, capfd, skip, failures, status):
install_mockery_mutable_config, mock_fetch, capfd, skip, failures, status
):
"""Confirm expected results from run_test for missing exe when skip or not.""" """Confirm expected results from run_test for missing exe when skip or not."""
s = spack.spec.Spec("trivial-smoke-test").concretized() s = spack.spec.Spec("trivial-smoke-test").concretized()
pkg = s.package pkg = s.package
@ -328,7 +326,7 @@ def test_package_run_test_missing(
# TODO (post-34236): Remove when remove deprecated run_test(), etc. # TODO (post-34236): Remove when remove deprecated run_test(), etc.
def test_package_run_test_fail_fast(install_mockery_mutable_config, mock_fetch): def test_package_run_test_fail_fast(install_mockery, mock_fetch):
"""Confirm expected exception when run_test with fail_fast enabled.""" """Confirm expected exception when run_test with fail_fast enabled."""
s = spack.spec.Spec("trivial-smoke-test").concretized() s = spack.spec.Spec("trivial-smoke-test").concretized()
pkg = s.package pkg = s.package

View File

@ -291,7 +291,7 @@ def test_process_test_parts(mock_packages):
assert "test suite is missing" in str(exc_info) assert "test suite is missing" in str(exc_info)
def test_test_part_fail(tmpdir, install_mockery_mutable_config, mock_fetch, mock_test_stage): def test_test_part_fail(tmpdir, install_mockery, mock_fetch, mock_test_stage):
"""Confirm test_part with a ProcessError results in FAILED status.""" """Confirm test_part with a ProcessError results in FAILED status."""
s = spack.spec.Spec("trivial-smoke-test").concretized() s = spack.spec.Spec("trivial-smoke-test").concretized()
pkg = s.package pkg = s.package
@ -307,7 +307,7 @@ def test_test_part_fail(tmpdir, install_mockery_mutable_config, mock_fetch, mock
assert status == TestStatus.FAILED assert status == TestStatus.FAILED
def test_test_part_pass(install_mockery_mutable_config, mock_fetch, mock_test_stage): def test_test_part_pass(install_mockery, mock_fetch, mock_test_stage):
"""Confirm test_part that succeeds results in PASSED status.""" """Confirm test_part that succeeds results in PASSED status."""
s = spack.spec.Spec("trivial-smoke-test").concretized() s = spack.spec.Spec("trivial-smoke-test").concretized()
pkg = s.package pkg = s.package
@ -323,7 +323,7 @@ def test_test_part_pass(install_mockery_mutable_config, mock_fetch, mock_test_st
assert status == TestStatus.PASSED assert status == TestStatus.PASSED
def test_test_part_skip(install_mockery_mutable_config, mock_fetch, mock_test_stage): def test_test_part_skip(install_mockery, mock_fetch, mock_test_stage):
"""Confirm test_part that raises SkipTest results in test status SKIPPED.""" """Confirm test_part that raises SkipTest results in test status SKIPPED."""
s = spack.spec.Spec("trivial-smoke-test").concretized() s = spack.spec.Spec("trivial-smoke-test").concretized()
pkg = s.package pkg = s.package
@ -337,9 +337,7 @@ def test_test_part_skip(install_mockery_mutable_config, mock_fetch, mock_test_st
assert status == TestStatus.SKIPPED assert status == TestStatus.SKIPPED
def test_test_part_missing_exe_fail_fast( def test_test_part_missing_exe_fail_fast(tmpdir, install_mockery, mock_fetch, mock_test_stage):
tmpdir, install_mockery_mutable_config, mock_fetch, mock_test_stage
):
"""Confirm test_part with fail fast enabled raises exception.""" """Confirm test_part with fail fast enabled raises exception."""
s = spack.spec.Spec("trivial-smoke-test").concretized() s = spack.spec.Spec("trivial-smoke-test").concretized()
pkg = s.package pkg = s.package
@ -360,9 +358,7 @@ def test_test_part_missing_exe_fail_fast(
assert status == TestStatus.FAILED assert status == TestStatus.FAILED
def test_test_part_missing_exe( def test_test_part_missing_exe(tmpdir, install_mockery, mock_fetch, mock_test_stage):
tmpdir, install_mockery_mutable_config, mock_fetch, mock_test_stage
):
"""Confirm test_part with missing executable fails.""" """Confirm test_part with missing executable fails."""
s = spack.spec.Spec("trivial-smoke-test").concretized() s = spack.spec.Spec("trivial-smoke-test").concretized()
pkg = s.package pkg = s.package
@ -396,7 +392,7 @@ def test_test_part_missing_exe(
], ],
) )
def test_embedded_test_part_status( def test_embedded_test_part_status(
install_mockery_mutable_config, mock_fetch, mock_test_stage, current, substatuses, expected install_mockery, mock_fetch, mock_test_stage, current, substatuses, expected
): ):
"""Check to ensure the status of the enclosing test part reflects summary of embedded parts.""" """Check to ensure the status of the enclosing test part reflects summary of embedded parts."""
@ -424,7 +420,7 @@ def test_embedded_test_part_status(
], ],
) )
def test_write_tested_status( def test_write_tested_status(
tmpdir, install_mockery_mutable_config, mock_fetch, mock_test_stage, statuses, expected tmpdir, install_mockery, mock_fetch, mock_test_stage, statuses, expected
): ):
"""Check to ensure the status of the enclosing test part reflects summary of embedded parts.""" """Check to ensure the status of the enclosing test part reflects summary of embedded parts."""
s = spack.spec.Spec("trivial-smoke-test").concretized() s = spack.spec.Spec("trivial-smoke-test").concretized()
@ -441,9 +437,7 @@ def test_write_tested_status(
@pytest.mark.regression("37840") @pytest.mark.regression("37840")
def test_write_tested_status_no_repeats( def test_write_tested_status_no_repeats(tmpdir, install_mockery, mock_fetch, mock_test_stage):
tmpdir, install_mockery_mutable_config, mock_fetch, mock_test_stage
):
"""Emulate re-running the same stand-alone tests a second time.""" """Emulate re-running the same stand-alone tests a second time."""
s = spack.spec.Spec("trivial-smoke-test").concretized() s = spack.spec.Spec("trivial-smoke-test").concretized()
pkg = s.package pkg = s.package