create .travis.yml and requirements.txt files

This commit is contained in:
Mike Fährmann
2017-01-09 12:29:04 +01:00
parent a1fb46d984
commit 911d2f080b
2 changed files with 11 additions and 0 deletions

10
.travis.yml Normal file
View File

@@ -0,0 +1,10 @@
sudo: false
language: python
python:
- "3.3"
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
script:
- nosetests --verbose test

1
requirements.txt Normal file
View File

@@ -0,0 +1 @@
requests