enable travis-ci
This commit is contained in:
parent
5e3903a907
commit
7c7e02a679
|
|
@ -0,0 +1,6 @@
|
|||
language: python
|
||||
python:
|
||||
- "2.6"
|
||||
- "2.7"
|
||||
install: make init
|
||||
script: make build
|
||||
5
Makefile
5
Makefile
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = '0.6.18'
|
||||
__version__ = '0.6.19'
|
||||
|
|
|
|||
Loading…
Reference in New Issue