enable travis-ci

This commit is contained in:
Rossen Georgiev 2014-12-15 00:00:54 +00:00
parent 5e3903a907
commit 7c7e02a679
3 changed files with 11 additions and 2 deletions

6
.travis.yml Normal file
View File

@ -0,0 +1,6 @@
language: python
python:
- "2.6"
- "2.7"
install: make init
script: make build

View File

@ -7,6 +7,7 @@ Available commands:
make init - install python dependancies
make test - run tests and coverage
make pylint - code analysis
make build - pylint + test
endef
export HELPBODY
@ -20,4 +21,6 @@ test:
nosetests --verbosity 2 --with-coverage
pylint:
pylint -r n -f colorized aprs
pylint -r n -f colorized aprs || true
build: pylint test

View File

@ -1 +1 @@
__version__ = '0.6.18'
__version__ = '0.6.19'