From 8ac781a3361b18e5feb729b0ddfaadd13f6457f0 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 18 Jan 2022 18:11:31 +0100 Subject: [PATCH] Update woodpecker --- .woodpecker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 .