From 688a33157fc3d5ebc3414930a3fa4a3473c3b002 Mon Sep 17 00:00:00 2001 From: Peter Bittner Date: Thu, 3 Oct 2024 20:41:28 +0200 Subject: [PATCH] Update contribution instructions --- docs/contribute.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/contribute.rst b/docs/contribute.rst index 62eeffc..3689af8 100644 --- a/docs/contribute.rst +++ b/docs/contribute.rst @@ -7,7 +7,7 @@ do just that. Preparation ----------- -Fork, then clone the repo: +Fork the *behave-django* repository, then clone it: .. code:: console @@ -30,9 +30,9 @@ section in ``tox.ini`` for details. .. code:: console - $ tox -lv # show all Tox targets - $ tox -e py37-django22 # run just a single target - $ tox # run all linting and tests + $ tox list # show all Tox environments + $ tox -e py312-django51 # run just a single environment + $ tox # run all linting and tests Getting your hands dirty ------------------------ @@ -88,8 +88,8 @@ Other things to note - Write tests. - Your tests don't have to be *behave* tests. ``:-)`` -- We're using PEP8 as our code style guide (``flake8`` will run over the code - on the CI server). +- We use Ruff to govern our code style (``ruff check`` and ``ruff format`` + will run over the code on the CI server). Thank you!