don't write ruff output to file (#121)

* don't write ruff output to file

* Update ruff instructions in python README

---------

Co-authored-by: ok300 <106775972+ok300@users.noreply.github.com>
This commit is contained in:
Ruben
2024-01-12 15:51:07 +01:00
committed by GitHub
parent 686b57aff4
commit 464a29816d
2 changed files with 5 additions and 3 deletions

View File

@@ -263,7 +263,7 @@ jobs:
- name: Check python formatting
working-directory: snippets/python/src
run: ruff --ignore F841 --ignore F401 --output-format=github .
run: ruff check --ignore F841 --ignore F401 --add-noqa .
- name: Check python syntax
working-directory: snippets/python