Skip to content

Commit

Permalink
DEV: remove flake8 from CI
Browse files Browse the repository at this point in the history
Ruff will take its place in a future PR
  • Loading branch information
Gui-FernandesBR committed Feb 8, 2025
1 parent 11beb7a commit c5c50e6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,14 @@ jobs:
python -m pip install --upgrade pip
pip install .[all]
pip install .[tests]
pip install pylint isort flake8 black
pip install pylint isort black
- name: Run isort
run: isort --check-only rocketpy/ tests/ docs/ --profile black
- name: Run black
uses: psf/black@stable
with:
options: "--check rocketpy/ tests/ docs/"
jupyter: true
- name: Run flake8
run: flake8 rocketpy/ tests/
- name: Run pylint
run: |
pylint rocketpy/ tests/

0 comments on commit c5c50e6

Please sign in to comment.