Skip to content

Commit e23b068

Browse files
committed
SHAREDLIB_BUILD is not set to PENDING unless it's actually the current phase.
1 parent 3fcb1d3 commit e23b068

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CIME/test_status.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,8 @@ def set_status(self, phase, status, comments=""):
263263
and phase != CORE_PHASES[-1]
264264
):
265265
next_core_phase = CORE_PHASES[CORE_PHASES.index(phase) + 1]
266-
self._phase_statuses[next_core_phase] = (TEST_PEND_STATUS, "")
266+
if next_core_phase != SHAREDLIB_BUILD_PHASE:
267+
self._phase_statuses[next_core_phase] = (TEST_PEND_STATUS, "")
267268

268269
def get_status(self, phase):
269270
return self._phase_statuses[phase][0] if phase in self._phase_statuses else None

0 commit comments

Comments
 (0)