diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..417ef92 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: python +python: + - "2.6" + - "2.7" +install: make init +script: make build diff --git a/Makefile b/Makefile index aac3a23..16d7621 100644 --- a/Makefile +++ b/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 diff --git a/aprs/version.py b/aprs/version.py index edeb2fe..ffb7bb5 100644 --- a/aprs/version.py +++ b/aprs/version.py @@ -1 +1 @@ -__version__ = '0.6.18' +__version__ = '0.6.19'