From b35508d02e176571aecb9e3202a80d05e411029f Mon Sep 17 00:00:00 2001 From: Michael Moese Date: Fri, 26 Feb 2021 13:35:59 +0100 Subject: [PATCH] Add a basic travis configuration This should help us getting a basic CI running. Disable pytest until we have some tests Signed-off-by: Michael Moese --- .travis.yml | 12 ++++++++++++ Makefile | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..8bb6fd8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python +python: + - "3.5" + +install: + - make setup + +script: + - make test + +after_success: + - codecov diff --git a/Makefile b/Makefile index e5a5f5d..9933c76 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ setup: test: ${PYCODESTYLE} *.py - ${PYTHON} -m pytest +# ${PYTHON} -m pytest clean: @echo "cleaning"