forked from LettError/MutatorMath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
24 lines (24 loc) · 823 Bytes
/
.travis.yml
File metadata and controls
24 lines (24 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: python
sudo: required
python:
- "2.7"
before_install:
- git clone https://github.com/typesupply/defcon.git --branch ufo3
- git clone https://github.com/typesupply/fontMath.git --branch ufo3
- git clone https://github.com/robofab-developers/robofab.git --branch ufo3k
- git clone https://github.com/behdad/fonttools.git
install:
- cd defcon; python setup.py install; cd ..
- cd fontMath; python setup.py install; cd ..
- cd robofab; python install.py; cd ..
- cd fonttools; python setup.py install; cd ..
# MutatorMath
- python setup.py install
- pip install coveralls
script:
- cd Lib/mutatorMath/test/ufo
- coverage run --parallel-mode --source=mutatorMath test.py
- coverage run --parallel-mode --source=mutatorMath kerningTest.py
after_success:
- coverage combine
- coveralls