[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 - os: windows
include: include:
- stage: Lint - stage: Lint & Tests
name: Lint, via Black name: Lint, via Black
python: 3.8 python: 3.8
install: # black is automatically installed by peotry
- pip install black
script: script:
- black . - black --check . --verbose
# Python 3.6 Tests # Python 3.6 Tests
- stage: Tests - name: Python 3.6 on Linux
name: Python 3.6 on Linux
python: 3.6 python: 3.6
- <<: *test_mac - <<: *test_mac
name: Python 3.6 on MacOS name: Python 3.6 on MacOS