Skip to content

Commit

Permalink
Remove flake8 and update CircleCI config
Browse files Browse the repository at this point in the history
- Remove flake8 from requirements and CircleCI config
- Update CircleCI config to run pylint only
  • Loading branch information
basicthinker committed Jun 6, 2023
1 parent abdb108 commit 5df0553
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@ jobs:
. venv/bin/activate
pip install -r devchat/requirements.txt
pip install -r tests/requirements.txt
pip install flake8 pylint
pip install pylint
- run:
name: Run pylint and flake8
name: Run pylint
command: |
. venv/bin/activate
export PYTHONPATH=.
pylint devchat tests
flake8 devchat tests
- run:
name: Run pytest
command: |
Expand Down

0 comments on commit 5df0553

Please sign in to comment.