Skip to content

Commit 646e6ea

Browse files
committed
[.travis.yml] add Py3.8, update config
1 parent f7eba9d commit 646e6ea

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.travis.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,30 @@ matrix:
1111
script: flake8 --ignore=E501,W503 lib/fontline/*.py
1212
- python: 3.6
1313
env: TOX_ENV=py36
14-
install: pip install tox
14+
install:
15+
- pip install tox
16+
- pip install -r requirements.txt
1517
script: tox -e $TOX_ENV
1618
- python: 3.7
1719
env: TOX_ENV=py37
18-
install: pip install tox
20+
install:
21+
- pip install tox
22+
- pip install -r requirements.txt
1923
dist: xenial
2024
script: tox -e $TOX_ENV
2125
- python: 3.8
2226
env: TOX_ENV=py38
23-
install: pip install tox
27+
install:
28+
- pip install tox
29+
- pip install -r requirements.txt
2430
dist: xenial
2531
script: tox -e $TOX_ENV
2632
- python: 3.7
2733
dist: xenial
2834
env: TOX_ENV=coverage
2935
install:
3036
- pip install --upgrade coverage
31-
- pip install .
37+
- pip install -r requirements.txt
3238
script:
3339
- coverage run --source fontline -m py.test
3440
- coverage report -m

0 commit comments

Comments
 (0)