Skip to content

Commit 26ecd1b

Browse files
authored
Merge branch 'master' into bugfix/git-clone-stagedir-marks
2 parents 55c07f5 + 951de2b commit 26ecd1b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
python -m build
152152
- name: Install Wheel
153153
run: |
154-
python -m pip install dist/ReFrame_HPC*.whl
154+
python -m pip install dist/*.whl
155155
- name: Test Installation
156156
run: |
157157
reframe -V

reframe/frontend/executors/policies.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -438,13 +438,13 @@ def _advance_all(self, tasks, timeout=None):
438438
num_progressed += bump_state(t)
439439
new_state = t.state
440440

441+
if self._pipeline_statistics:
442+
self._update_pipeline_progress(old_state, new_state, 1)
443+
441444
t_elapsed = time.time() - t_init
442445
if timeout and t_elapsed > timeout and num_progressed:
443446
break
444447

445-
if self._pipeline_statistics:
446-
self._update_pipeline_progress(old_state, new_state, 1)
447-
448448
getlogger().debug2(f'Bumped {num_progressed} test(s)')
449449

450450
def _advance_startup(self, task):

0 commit comments

Comments
 (0)