We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1386c70 commit 2bf1718Copy full SHA for 2bf1718
.config/dictionary.txt
@@ -108,7 +108,6 @@ passwordless
108
prepender
109
prerun
110
profisioner
111
-psql
112
pycolors
113
reget
114
resetall
src/molecule/config.py
@@ -751,7 +751,8 @@ def _validate(self) -> None:
751
752
errors = schema_v3.validate(self.config)
753
if errors:
754
- msg = f"Failed to validate {self.molecule_file}\n\n{errors}"
+ errors_resolved = "\n".join(errors)
755
+ msg = f"Failed to validate {self.molecule_file}\n\n{errors_resolved}"
756
sysexit_with_message(msg, code=1)
757
758
0 commit comments