From 336ae1e37c0e4a615a49fe744766139c44fd5324 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 17 Jun 2025 19:43:22 +0900 Subject: [PATCH] Add tox env to run ruff ... so that developers can run the ruff format check easily. --- tox.ini | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tox.ini b/tox.ini index c633e27f..02edefaf 100644 --- a/tox.ini +++ b/tox.ini @@ -9,3 +9,9 @@ extras = twisted commands = python -W once -m testtools.run testtools.tests.test_suite {posargs} + +[testenv:ruff] +deps = + ruff +commands = + ruff check . {posargs}