We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0a8d1a commit ceab94dCopy full SHA for ceab94d
.travis.yml
@@ -4,18 +4,24 @@ sudo: false
4
language: python
5
matrix:
6
include:
7
+ - python: 3.7
8
+ dist: xenial
9
+ env: TOX_ENV=lint
10
+ install: pip install flake8
11
+ script: flake8 --ignore=E501,W503 lib/fontline/*.py
12
- python: 3.5
13
env: TOX_ENV=py35
14
+ install: pip install tox
15
+ script: tox -e $TOX_ENV
16
- python: 3.6
17
env: TOX_ENV=py36
18
19
20
- python: 3.7
21
env: TOX_ENV=py37
22
23
dist: xenial
-
-script: tox -e $TOX_ENV
-install:
- - pip install tox
24
25
26
notifications:
27
email: false
0 commit comments