mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-21 17:15:38 +03:00
Move flake8 to end. Don't exit script on failure (#7738)
This commit is contained in:
parent
b099ef07d6
commit
177b2d0c19
2 changed files with 3 additions and 2 deletions
1
changelog.d/7738.misc
Normal file
1
changelog.d/7738.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Move `flake8` to the end of `scripts-dev/lint.sh` as it takes the longest and could cause the script to exit early.
|
|
@ -2,8 +2,8 @@
|
|||
#
|
||||
# Runs linting scripts over the local Synapse checkout
|
||||
# isort - sorts import statements
|
||||
# flake8 - lints and finds mistakes
|
||||
# black - opinionated code formatter
|
||||
# flake8 - lints and finds mistakes
|
||||
|
||||
set -e
|
||||
|
||||
|
@ -16,6 +16,6 @@ fi
|
|||
|
||||
echo "Linting these locations: $files"
|
||||
isort -y -rc $files
|
||||
flake8 $files
|
||||
python3 -m black $files
|
||||
./scripts-dev/config-lint.sh
|
||||
flake8 $files
|
||||
|
|
Loading…
Reference in a new issue