From 2d078fe66c5296cb671934f3bf5dc9b83581bcf0 Mon Sep 17 00:00:00 2001 From: Michael Adkins Date: Mon, 24 Apr 2023 12:34:33 -0500 Subject: [PATCH] Update contributing docs to reference ruff --- docs/contributing/overview.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/contributing/overview.md b/docs/contributing/overview.md index a7b7069b753d..767c625ea0ed 100644 --- a/docs/contributing/overview.md +++ b/docs/contributing/overview.md @@ -42,7 +42,7 @@ pip install $(./scripts/precommit-versions.py) ``` -You'll need to run `black`, `autoflake8`, and `isort` before a contribution can be accepted. +You'll need to run `black` and `ruff` before a contribution can be accepted. After installation, you can run the test suite with `pytest`: @@ -52,7 +52,6 @@ After installation, you can run the test suite with `pytest`: # Run all the tests pytest tests - # Run a subset of tests pytest tests/test_flows.py ```