We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a389afc commit 1232bb9Copy full SHA for 1232bb9
cppython/project.py
@@ -30,7 +30,7 @@ def __init__(
30
pyproject = resolve_model(PyProject, pyproject_data)
31
except ConfigException as error:
32
self.logger.error(error, exc_info=True)
33
- return
+ raise SystemExit(1) from None
34
35
if not pyproject.tool or not pyproject.tool.cppython:
36
self.logger.info("The pyproject.toml file doesn't contain the `tool.cppython` table")
0 commit comments