diff options
author | Waylan Limberg <waylan@gmail.com> | 2014-03-24 19:25:20 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2014-03-24 19:25:20 -0400 |
commit | 5e9b99ec7e80169216742822e136a81e5110ba5f (patch) | |
tree | 8f6cb976df502fedbdde1689bb5dab284ac3985e /.travis.yml | |
parent | 76dd29a121611be0e1068c73bc20d9591d9be5cf (diff) | |
download | python-markdown-5e9b99ec7e80169216742822e136a81e5110ba5f.tar.gz |
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.yml | 10 |
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 |