Skip to content

Commit 9fbfe61

Browse files
committed
Add Travis file, plus requirements for pip
1 parent 5bebb6e commit 9fbfe61

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
- "3.2"
6+
- "3.3"
7+
- "pypy"
8+
9+
before_install:
10+
- git submodule update --init --recursive
11+
12+
install:
13+
- pip install -r requirements.txt -r requirements-test.txt --use-mirrors
14+
15+
script:
16+
- nosetests

requirements-test.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nose

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
six

0 commit comments

Comments
 (0)