From 152eb592f948ecf6cfb1091d1ab2290cd239907b Mon Sep 17 00:00:00 2001 From: Yandrik Date: Thu, 25 Apr 2024 15:51:37 +0200 Subject: [PATCH] ci: add proper poetry image --- .drone.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index be26e97..19ab21b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,30 +4,30 @@ name: default steps: - name: Unit Tests - image: python:3.12 + image: weastur/poetry:latest-python-3.12 commands: - - pip install poetry + # - pip install poetry - poetry config virtualenvs.create false - poetry install - poetry run pytest - name: Python Code Lint - image: python:3.12 + image: weastur/poetry:latest-python-3.12 commands: - - pip install poetry + # - pip install poetry - poetry config virtualenvs.create false - poetry install - poetry run black . - name: Static Type check - image: python:3.12 + image: weastur/poetry:latest-python-3.12 commands: - - pip install poetry + # - pip install poetry - poetry config virtualenvs.create false - poetry install - poetry run mypy . - name: Deploy - image: python:3.12 + image: weastur/poetry:latest-python-3.12 commands: - echo "TODO"