You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`path`: String path to resolve (supports any LoadSpec format)
667
667
-`allow_not_exist`: Optional boolean (default: False). If True, allows non-existent paths. Can only be used with local path LoadSpecs, not package/GitHub/GitLab specs.
668
668
669
-
### error(msg)
669
+
### error(msg, suppress=False, kind=None)
670
670
671
-
Raises a runtime error with the given message.
671
+
Raises a runtime error with the given message. With `suppress=True`, the error is rendered but doesn't stop evaluation or fail the build.
672
672
673
673
```python
674
+
# Basic error (stops evaluation)
674
675
ifnot condition:
675
676
error("Condition failed")
677
+
678
+
# Suppressed error (rendered but doesn't fail build)
0 commit comments