From 9d183229dfeeb6be36048fb9b28b9c875a9f3383 Mon Sep 17 00:00:00 2001 From: MinchinWeb Date: Thu, 12 Dec 2019 10:41:08 -0700 Subject: [PATCH] [Travis] update as per code review Remove "Lint" as separate stage; have `black` check the output rather than run the re-formmater --- .travis.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6454b1ab..635e6101 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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