forked from photoshell/rawkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
40 lines (40 loc) · 810 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
sudo: false
language: python
cache:
directories:
# Pipenv takes over 10 minutes and times out the build if we have a pip
# cache on Python 3.7 for some reason.
# - $HOME/.cache/pip
- $HOME/.cache/pipenv
matrix:
# Keep up to date with the tox.ini list
include:
- python: pypy3
env: TOXENV=pypy3
- python: 3.7
dist: xenial
sudo: true
env: TOXENV=py37
- python: 3.6
env: TOXENV=py36
- python: 3.5
env: TOXENV=py35
- python: 2.7
env: TOXENV=py27
- python: 3.6
env: TOXENV=flake8-py3
- python: 3.6
env: TOXENV=docs
addons:
apt:
packages:
- libraw-bin
install:
- pip install coveralls
- pip install pipenv
- pipenv install --dev
script:
- make docs
- make test
after_success:
- coveralls