浏览代码

Add Travis CI test configuration

This will run the tests on CPython (2.5-3.3) and PyPy. Each push will
automatically trigger a test run on the Travis CI server.
Steven Myint 11 年前
父节点
当前提交
85f5bb1bf7
共有 1 个文件被更改,包括 15 次插入0 次删除
  1. 15
    0
      .travis.yml

+ 15
- 0
.travis.yml 查看文件

1
+language: python
2
+
3
+python:
4
+    - "2.5"
5
+    - "2.6"
6
+    - "2.7"
7
+    - "pypy"
8
+    - "3.2"
9
+    - "3.3"
10
+
11
+install:
12
+    - python setup.py install
13
+
14
+script:
15
+    ./tests/tests.sh