From 9cd549d30c7419c5d550ccb2ae6625a2e9afa967 Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Wed, 14 Sep 2022 18:15:49 +0200 Subject: [PATCH] /usr is not persisted across steps --- .woodpecker.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 28a337f..b04e6cc 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,30 +1,25 @@ pipeline: - install-linters: - image: python:${PYTHON_VERSION} - commands: - - pip3 install flake8 mypy black flake8: group: lint image: python:${PYTHON_VERSION} commands: + - pip3 install flake8 - flake8 opdb/ mypy: group: lint image: python:${PYTHON_VERSION} commands: + - pip3 install mypy - mypy opdb black: group: lint - image: python:${PYTHON_VERSION} + image: pyfound/black:22.8.0 commands: - black --check opdb/ - install: - image: python:${PYTHON_VERSION} - commands: - - pip3 install . test: image: python:${PYTHON_VERSION} commands: + - pip3 install . - pytest matrix: