From c92e05303cd143dfeef0a4319ad0e443ac64bd92 Mon Sep 17 00:00:00 2001 From: Oskar Taubert Date: Mon, 23 Oct 2023 14:06:53 +0200 Subject: [PATCH] updated ruff parameters --- .github/workflows/python-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index ce14cc86..b9237d0b 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -22,9 +22,9 @@ jobs: - name: Lint with ruff run: | # stop the build if there are Python syntax errors or undefined names - ruff --format=github --select=E9,F63,F7,F82 --target-version=py39 . + ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py39 . # default set of ruff rules with GitHub Annotations - ruff --format=github --target-version=py39 . + ruff --output-format=github --target-version=py39 . - name: Test with pytest run: | pytest