diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0e941f242..8893eb9ab 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -151,7 +151,7 @@ jobs: python -m build - name: Install Wheel run: | - python -m pip install dist/ReFrame_HPC*.whl + python -m pip install dist/*.whl - name: Test Installation run: | reframe -V diff --git a/reframe/frontend/executors/policies.py b/reframe/frontend/executors/policies.py index bceefed1d..da31264e6 100644 --- a/reframe/frontend/executors/policies.py +++ b/reframe/frontend/executors/policies.py @@ -438,13 +438,13 @@ def _advance_all(self, tasks, timeout=None): num_progressed += bump_state(t) new_state = t.state + if self._pipeline_statistics: + self._update_pipeline_progress(old_state, new_state, 1) + t_elapsed = time.time() - t_init if timeout and t_elapsed > timeout and num_progressed: break - if self._pipeline_statistics: - self._update_pipeline_progress(old_state, new_state, 1) - getlogger().debug2(f'Bumped {num_progressed} test(s)') def _advance_startup(self, task):