Admin: Replace flake8 references with ruff (#6794)

This commit is contained in:
Bert Blommers 2023-09-08 20:45:11 +00:00 committed by GitHub
parent 121ad974b8
commit a75e30faae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ jobs:
- name: Install project dependencies
run: |
pip install -r requirements-dev.txt
- name: Lint with flake8
- name: Lint
run:
make lint

View File

@ -40,7 +40,7 @@ To verify all tests pass for a specific service, for example for `s3`, run these
.. code-block:: bash
flake8 moto/s3
ruff moto/s3
black --check moto/s3 tests/test_s3
pylint tests/test_s3
pytest -sv tests/test_s3
@ -76,7 +76,7 @@ Then standard development on Moto can proceed, for example:
.. code-block:: bash
flake8 moto/s3
ruff moto/s3
black --check moto/s3 tests/test_s3
pylint tests/test_s3
pytest -sv tests/test_s3