From 355a1b4781bac74f9c5d15888a71339cd36fb188 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Wed, 25 Nov 2015 12:05:27 +0100 Subject: Add a .travis.yml file, thanks to Raphaƫl Vinot --- .travis.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..fe1de87 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,28 @@ +language: python + +python: + - "2.7" + +virtualenv: + system_site_packages: true + +sudo: required + +before_install: + - sudo apt-get install python-distutils-extra libimage-exiftool-perl + +install: + - pushd .. + - pip install --user --upgrade pip + - pip install --user --upgrade setuptools + - pip install --user coveralls + - pip install --user codecov + - popd + - python setup.py install + +script: + - coverage run setup.py test + +after_success: + - coveralls + - codecov -- cgit v1.3