File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -11,24 +11,30 @@ matrix:
11
11
script : flake8 --ignore=E501,W503 lib/fontline/*.py
12
12
- python : 3.6
13
13
env : TOX_ENV=py36
14
- install : pip install tox
14
+ install :
15
+ - pip install tox
16
+ - pip install -r requirements.txt
15
17
script : tox -e $TOX_ENV
16
18
- python : 3.7
17
19
env : TOX_ENV=py37
18
- install : pip install tox
20
+ install :
21
+ - pip install tox
22
+ - pip install -r requirements.txt
19
23
dist : xenial
20
24
script : tox -e $TOX_ENV
21
25
- python : 3.8
22
26
env : TOX_ENV=py38
23
- install : pip install tox
27
+ install :
28
+ - pip install tox
29
+ - pip install -r requirements.txt
24
30
dist : xenial
25
31
script : tox -e $TOX_ENV
26
32
- python : 3.7
27
33
dist : xenial
28
34
env : TOX_ENV=coverage
29
35
install :
30
36
- pip install --upgrade coverage
31
- - pip install .
37
+ - pip install -r requirements.txt
32
38
script :
33
39
- coverage run --source fontline -m py.test
34
40
- coverage report -m
You can’t perform that action at this time.
0 commit comments