diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..2b730ef --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python + +python: + - "2.6" + - "2.7" + # - "3.2" + # - "3.3" + +# command to install dependencies +install: "pip install -r requirements-dev.txt" + +# command to run tests +script: testify tests diff --git a/requirements-dev.txt b/requirements-dev.txt index 87f8c3c..0f08ed1 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -2,4 +2,5 @@ tox==1.6.1 coverage==3.5.3 flake8 +testify pylint>=1.0.0