Add "black --check . || true" on Python 3
This commit is contained in:
parent
8196bcec8a
commit
e7f0cb7d1b
1 changed files with 2 additions and 1 deletions
|
@ -44,7 +44,8 @@ jobs:
|
|||
- stage: lint
|
||||
python: 3.8
|
||||
script:
|
||||
- pip install flake8
|
||||
- pip install black flake8
|
||||
- black --check . || true # TODO: (cclauss) Remove "|| true" when ready
|
||||
- flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
||||
- stage: build
|
||||
name: Build
|
||||
|
|
Reference in a new issue