summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authoradamantike <mike@fmanganiello.com.ar>2016-01-24 00:23:23 -0300
committeradamantike <mike@fmanganiello.com.ar>2016-01-24 15:47:53 -0300
commitf05b659ec010c697e56096be3ce7dcd570395c43 (patch)
treec7eb3d2fc808a1ce963be5ede984a842539dc82e /.travis.yml
parentea71fcb22c677aa9a53e510152bfc0a419bae1af (diff)
downloadrsa-git-f05b659ec010c697e56096be3ce7dcd570395c43.tar.gz
Added Travis CI integration
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..4846a97
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,22 @@
+language: python
+
+# Python 3.5 specified to make tox environment 'py35' work.
+# See: https://github.com/travis-ci/travis-ci/issues/4794
+python:
+ - 3.5
+
+# Environment changes have to be manually synced with 'tox.ini'.
+# See: https://github.com/travis-ci/travis-ci/issues/3024
+env:
+ - TOXENV=py26
+ - TOXENV=py27
+ - TOXENV=py33
+ - TOXENV=py34
+ - TOXENV=py35
+ - TOXENV=pypy
+
+install:
+ - pip install -r requirements.txt
+
+script:
+ - tox