[Travis] update as per code review

Remove "Lint" as separate stage; have `black` check the output rather than run the re-formmater
This commit is contained in:
MinchinWeb 2019-12-12 10:41:08 -07:00
parent c1defc7db1
commit 9d183229df

View file

@ -53,17 +53,15 @@ jobs:
- os: windows
include:
- stage: Lint
- stage: Lint & Tests
name: Lint, via Black
python: 3.8
install:
- pip install black
# black is automatically installed by peotry
script:
- black .
- black --check . --verbose
# Python 3.6 Tests
- stage: Tests
name: Python 3.6 on Linux
- name: Python 3.6 on Linux
python: 3.6
- <<: *test_mac
name: Python 3.6 on MacOS