From 7c7e02a679704437a34c8e5cb17909b06bd8f472 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Mon, 15 Dec 2014 00:00:54 +0000 Subject: [PATCH] enable travis-ci --- .travis.yml | 6 ++++++ Makefile | 5 ++++- aprs/version.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 .travis.yml 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'