From d2e8aa0b7813ba0fb5aea3a03ea4d1d8ef3fdbdb Mon Sep 17 00:00:00 2001 From: Tom Weber Date: Thu, 5 Jan 2023 13:07:50 +0100 Subject: [PATCH] update woodpecker to not use requirements --- .woodpecker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index b1bd9bf..5443e50 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -3,7 +3,7 @@ pipeline: image: python:${TAG}-buster commands: - python -m pip install --upgrade pip - - python -m pip install -r requirements.txt + # - python -m pip install -r requirements.txt - python -m pip install pylint flake8 mypy>=0.971 - python -m flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # - mypy --strict serial_sphinx/ @@ -16,7 +16,7 @@ pipeline: - python -m venv venv - /bin/bash -c "source venv/bin/activate" - python -m pip install --upgrade pip pytest - - python -m pip install -r requirements.txt + # - python -m pip install -r requirements.txt - python -m pip install . - python -m pytest