aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2014-03-24 19:25:20 -0400
committerWaylan Limberg <waylan@gmail.com>2014-03-24 19:25:20 -0400
commit5e9b99ec7e80169216742822e136a81e5110ba5f (patch)
tree8f6cb976df502fedbdde1689bb5dab284ac3985e /.travis.yml
parent76dd29a121611be0e1068c73bc20d9591d9be5cf (diff)
downloadmarkdown-5e9b99ec7e80169216742822e136a81e5110ba5f.tar.gz
markdown-5e9b99ec7e80169216742822e136a81e5110ba5f.tar.bz2
markdown-5e9b99ec7e80169216742822e136a81e5110ba5f.zip
Add .travis.yml file
Just uses the existing tox config as described in <http://borntyping.com/posts/tox-and-travis-ci.html>. This fixes #299. I took this route rather than @mitya57's suggestion because we get better test coverage with tox's config (more dependencies are installed) and I can't see mirroring that here when we can just reuse it.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..a166280
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,10 @@
+language: python
+env:
+ - TOXENV=py26
+ - TOXENV=py27
+ - TOXENV=py32
+ - TOXENV=py33
+install:
+ - pip install tox
+script:
+ - tox