diff options
author | INADA Naoki <songofacandy@gmail.com> | 2012-11-06 02:10:36 +0900 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2012-11-06 02:10:36 +0900 |
commit | 2f0078d3955ad151452b92d570661d1b5779d7b6 (patch) | |
tree | c1dcc019cfed12bbab405b3829dcc3e24d030f79 | |
parent | 1e17642264ac6221b015a807ec44d2b36b1dfd5a (diff) | |
download | msgpack-python-2f0078d3955ad151452b92d570661d1b5779d7b6.tar.gz |
Add travis config.
-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..593d61e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - 2.5 + - 2.6 + - 2.7 + - 3.2 + - 3.3 + +install: "pip install cython --use-mirrors" +script: nosetests |