--- a
+++ b/.travis.yml
@@ -0,0 +1,19 @@
+sudo: false
+os:
+  - linux
+  - osx
+matrix:
+  allow_failures:
+    - os: osx
+language: python
+python:
+  - 2.7
+install:  # command to install dependencies
+  - pip install -r requirements.txt
+  - python setup.py develop
+script:  # command to run tests
+  - py.test --cov=./segmentator
+after_success:
+  - bash <(curl -s https://codecov.io/bash)
+notifications:
+  email: false