From 07b699fcff41385ff7511bc99cdf799a6b591ef8 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 18 Jan 2022 18:32:06 +0100 Subject: [PATCH] Update woodpecker --- .woodpecker.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 8e745ff..337cd7d 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,22 +1,21 @@ pipeline: - before_script: - image: python:3.9 + unit_tests: + image: mquade/poetry:3.9-1.1.11 commands: - - pip install poetry - poetry config virtualenvs.create false - poetry install - - unit_tests: - image: python:3.9 - commands: - pytest code_lint: - image: python:3.9 + image: mquade/poetry:3.9-1.1.11 commands: + - poetry config virtualenvs.create false + - poetry install - black . static_analysis: - image: python:3.9 + image: mquade/poetry:3.9-1.1.11 commands: + - poetry config virtualenvs.create false + - poetry install - mypy .