From 203e668928d0eb65ed50beda57b111de519e79e8 Mon Sep 17 00:00:00 2001 From: Hocuri Date: Tue, 8 Apr 2025 15:11:59 +0200 Subject: [PATCH] ci: Don't make ruff format quiet (#6785) Before this PR, it was not possible to see why `ruff format` failed --- deltachat-rpc-client/tox.ini | 2 +- python/tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deltachat-rpc-client/tox.ini b/deltachat-rpc-client/tox.ini index 3fc998d80..2ad52b8f5 100644 --- a/deltachat-rpc-client/tox.ini +++ b/deltachat-rpc-client/tox.ini @@ -21,7 +21,7 @@ skip_install = True deps = ruff commands = - ruff format --quiet --diff src/ examples/ tests/ + ruff format --diff src/ examples/ tests/ ruff check src/ examples/ tests/ [pytest] diff --git a/python/tox.ini b/python/tox.ini index 9866e3b5b..64a693bbc 100644 --- a/python/tox.ini +++ b/python/tox.ini @@ -45,7 +45,7 @@ deps = pygments restructuredtext_lint commands = - ruff format --quiet --diff setup.py src/deltachat examples/ tests/ + ruff format --diff setup.py src/deltachat examples/ tests/ ruff check src/deltachat tests/ examples/ rst-lint --encoding 'utf-8' README.rst