remove process handle

This commit is contained in:
kshea21 2025-01-07 10:59:33 -08:00 committed by Gregory Becker
parent 60380a4724
commit 0b1e388a0f
No known key found for this signature in database
GPG Key ID: 2362541F6D14ED84
2 changed files with 1 additions and 1 deletions

View File

@ -402,6 +402,7 @@ def stand_alone_tests(self, kwargs, timeout: Optional[int] = None) -> None:
spack.build_environment.start_build_process(
self.pkg, test_process, kwargs, timeout=timeout
)
spack.build_environment.complete_build_process()
def parts(self) -> int:
"""The total number of (checked) test parts."""

View File

@ -1144,7 +1144,6 @@ def priority(self):
class BuildTask(Task):
"""Class for representing a build task for a package."""
process_handle: Optional[spack.build_environment.ProcessHandle] = None
started: bool = False
def start(self):