| 636 | } |
| 637 | |
| 638 | void QmitkPipInstaller::AdvanceToNextGroup() |
| 639 | { |
| 640 | m_CurrentGroup++; |
| 641 | m_GroupStartIndex = static_cast<int>(m_ResolvedPackages.size()); |
| 642 | |
| 643 | if (m_CurrentGroup < static_cast<int>(m_Groups.size())) |
| 644 | { |
| 645 | m_State = State::Resolving; |
| 646 | emit ResolveStarted(); |
| 647 | this->StartResolveGroup(); |
| 648 | } |
| 649 | else |
| 650 | { |
| 651 | this->BeginPostInstallPhase(); |
| 652 | } |
| 653 | } |
| 654 | |
| 655 | // Called once all pip groups have finished. If no post-install steps are |
| 656 | // configured, immediately emits the terminal InstallFinished. Otherwise |
no test coverage detected