From b8cac78939455d64247dfe208082d734f2eae691 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 13 Dec 2023 09:54:47 +0100 Subject: [PATCH] cleanup --- .woodpecker/lint.yml | 3 +-- .woodpecker/unit-test.yml | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml index 0053e88..db22709 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -9,17 +9,16 @@ steps: check-format: image: docker.io/library/python:3.12 commands: - - git fetch --depth=2147483647 - pip install poetry -qq - poetry install --all-extras --no-root - poetry run ruff format --check --diff ./plugins environment: + LC_ALL: "en_US.UTF-8" PY_COLORS: "1" check-coding: image: docker.io/library/python:3.12 commands: - - git fetch --depth=2147483647 - pip install poetry -qq - poetry install --all-extras --no-root - poetry run ruff ./plugins diff --git a/.woodpecker/unit-test.yml b/.woodpecker/unit-test.yml index 10a49cc..cccb0f9 100644 --- a/.woodpecker/unit-test.yml +++ b/.woodpecker/unit-test.yml @@ -9,7 +9,6 @@ variables: - &pytest_base group: pytest commands: - - git fetch --depth=2147483647 - pip install poetry -qq - poetry install --all-extras --no-root - poetry run pytest