Skip to content

Commit

Permalink
[internal] Prüfung auf korrekte poetry Abhängikeiten aktualisiert
Browse files Browse the repository at this point in the history
poetry lock --check ist deprecated

ORG-233
  • Loading branch information
jkatins committed Oct 5, 2023
1 parent b3fd0f2 commit 0d08253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ def lint(ctx: Context, fix: bool = False) -> None:
ok &= ctx.run(f"flake8p {project_path}", warn=True).ok
ok &= ctx.run(f"mypy {project_path}", warn=True).ok
ok &= ctx.run("poetry check", warn=True).ok
ok &= ctx.run("poetry lock --check", warn=True).ok
ok &= ctx.run("poetry check --lock", warn=True).ok
if not ok:
sys.exit(1)

0 comments on commit 0d08253

Please sign in to comment.