-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
41 lines (34 loc) · 834 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
language: python
python:
- "3.6"
- "3.7"
- "3.8"
addons:
apt:
update: true
packages:
- wget
- libspatialindex-dev
- libglu1
- libxrender1
- libxtst6
- libxi6
before_install:
- cd ..
- wget https://download.blender.org/release/Blender2.79/blender-2.79b-linux-glibc219-x86_64.tar.bz2
- tar xjf blender-2.79b-linux-glibc219-x86_64.tar.bz2
- export PATH=/home/travis/build/gregstarr/blender-2.79b-linux-glibc219-x86_64:$PATH
- export PYTHONPATH=/home/travis/build/gregstarr/pychop3d
- cd pychop3d
install:
- python -m pip install --upgrade pip
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=pychop3d -m pytest -v test/
notifications:
email:
on_success: never
on_failure: never
after_success:
- coveralls