From 4aa6b653076f538b836743f5f094cdc57051fcfa Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sun, 10 Sep 2017 20:07:29 +0200 Subject: Added travisci --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6b0f2b5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - "3.5" + - "3.6" + +install: + - pip install Flask +sudo: + - required +script: + python3 /lib/app.py -- cgit v1.2.3-18-g5258 From a192199805c164d8b88c375942eecfd1afe3c17a Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sun, 10 Sep 2017 21:08:31 +0200 Subject: fixed travisci's file --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 6b0f2b5..0572367 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,9 @@ python: install: - pip install Flask -sudo: - - required -script: - python3 /lib/app.py + +dist: + - trusty + +sudo: required + -- cgit v1.2.3-18-g5258 From 815af19f3b441ccb1cd5575802da384dfd10f6fe Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 11 Sep 2017 10:21:26 +0200 Subject: added requirements into travisci file --- .travis.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 0572367..5c2d5db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,5 @@ python: - "3.6" install: - - pip install Flask - -dist: - - trusty - -sudo: required + - pip install -r requirements.txt -- cgit v1.2.3-18-g5258 From 16822eda917dc99a6e0be5db8330d4401ca4fd23 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 11 Sep 2017 10:24:33 +0200 Subject: update travisci --- .travis.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 5c2d5db..14380a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ language: python python: - - "3.5" - - "3.6" - -install: - - pip install -r requirements.txt - + - 3.6 + - nightly +script: + - pytest -- cgit v1.2.3-18-g5258 From cbd77f5172d93130a1039bcfbf79f5948d7ff667 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 11 Sep 2017 10:27:17 +0200 Subject: update travisci --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 14380a5..fc4ae20 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: python python: - - 3.6 - - nightly -script: - - pytest + - 3.5 +install: + - pip install -r requirements.txt -- cgit v1.2.3-18-g5258 From a56b6fc4c181d9c05842cff2a38aae0685e43b7e Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 11 Sep 2017 10:40:36 +0200 Subject: test travisci --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index fc4ae20..79904d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,4 @@ language: python python: - 3.5 -install: - - pip install -r requirements.txt + -- cgit v1.2.3-18-g5258 From f024cfc27ead8a79cc647e009b7cf83b0231d49e Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 11 Sep 2017 10:43:32 +0200 Subject: test travisci2 --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 79904d9..68fcf40 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,15 @@ +sudo: false language: python python: - 3.5 +install: + - pip install -r requirements.txt + +script: + - echo "Ok" + +branches: + only: + - master + -- cgit v1.2.3-18-g5258 From 7af941a02b9c95faacf9455928bd831cbf2b3371 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 11 Sep 2017 10:47:41 +0200 Subject: added makefile --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 68fcf40..8a709f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ install: - pip install -r requirements.txt script: - - echo "Ok" + make branches: only: -- cgit v1.2.3-18-g5258