Add .travis.yml

This commit is contained in:
Konstantine Rybnikov
2014-10-02 20:49:19 +03:00
parent 4d07279325
commit f36ebb8eb1
3 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View File

@@ -2,3 +2,4 @@
*.pyc
dist/
.venv
build/

11
.travis.yml Normal file
View File

@@ -0,0 +1,11 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: nosetests

1
requirements.txt Normal file
View File

@@ -0,0 +1 @@
nose