summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..fe1de87
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,28 @@
1language: python
2
3python:
4 - "2.7"
5
6virtualenv:
7 system_site_packages: true
8
9sudo: required
10
11before_install:
12 - sudo apt-get install python-distutils-extra libimage-exiftool-perl
13
14install:
15 - pushd ..
16 - pip install --user --upgrade pip
17 - pip install --user --upgrade setuptools
18 - pip install --user coveralls
19 - pip install --user codecov
20 - popd
21 - python setup.py install
22
23script:
24 - coverage run setup.py test
25
26after_success:
27 - coveralls
28 - codecov