We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81be9bc commit 396202bCopy full SHA for 396202b
packages/pytest-simcore/src/pytest_simcore/helpers/playwright.py
@@ -453,7 +453,7 @@ def __call__(self, message: str) -> bool:
453
454
done = self._completed_successfully()
455
if done:
456
- self._result = True
+ self._result = True # NOTE: might have failed but it is not sure. so we set the result to True
457
self.logger.info("✅ Service start completed successfully!! ✅")
458
return done
459
@@ -465,6 +465,7 @@ def __call__(self, message: str) -> bool:
465
time_since_last_progress,
466
self.node_id,
467
)
468
+ self._result = True
469
return True
470
471
return False
0 commit comments