diff --git a/.woodpecker.yml b/.woodpecker.yml index 7be3b05..8e745ff 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -9,14 +9,14 @@ pipeline: unit_tests: image: python:3.9 commands: - - poetry run pytest + - pytest code_lint: image: python:3.9 commands: - - poetry run black . + - black . static_analysis: image: python:3.9 commands: - - poetry run mypy . + - mypy .