]> git.ipfire.org Git - thirdparty/starlette.git/commitdiff
Only run 'black' on python >= 3.6
authorTom Christie <tom@tomchristie.com>
Mon, 25 Jun 2018 13:35:44 +0000 (14:35 +0100)
committerTom Christie <tom@tomchristie.com>
Mon, 25 Jun 2018 13:35:44 +0000 (14:35 +0100)
.travis.yml

index 13fc42cb70a93d8f24208ff17616e3d99faf86f3..36c345182672010e1d3bcfba77203b445c7ba386 100644 (file)
@@ -3,7 +3,6 @@ language: python
 cache: pip
 
 python:
-    - "pypy3.5"
     - "3.5"
     - "3.6"
 
@@ -11,5 +10,5 @@ install:
     - pip install -r requirements.txt
 
 script:
-    - scripts/lint
+    - if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then scripts/lint; fi
     - scripts/test