From 83b6d1bd555da7a0a047c51bfb4f708a175b3192 Mon Sep 17 00:00:00 2001 From: Maik Kulbe Date: Wed, 18 Feb 2015 22:43:46 +0100 Subject: [PATCH 1/8] Changed travis IRC to SSL connection --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6f40582..e8f58c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ git: notifications: irc: channels: - - "irc.hackint.net#bytespeicher-testing" + - "ircs:irc.hackint.net:9999#bytespeicher-testing" template: - "%{repository_slug} (%{commit}) : %{message}" - "Mehr zum Test: %{build_url}" From 95826ab25126727bd69e2ed57e1c4f430bb49bde Mon Sep 17 00:00:00 2001 From: Maik Kulbe Date: Wed, 18 Feb 2015 22:45:45 +0100 Subject: [PATCH 2/8] Added language tag to travis file --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index e8f58c4..5046cda 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +language: python python: - "2.7" - "3.2" From f3a47ef28af99f7ca311feaeca3cf713296d4e24 Mon Sep 17 00:00:00 2001 From: MKzero Date: Thu, 5 Nov 2015 14:17:54 +0100 Subject: [PATCH 3/8] Added IRC options for join-less messages --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5046cda..81666e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,8 @@ notifications: irc: channels: - "ircs:irc.hackint.net:9999#bytespeicher-testing" + use_notice: true + skip_join: true template: - "%{repository_slug} (%{commit}) : %{message}" - "Mehr zum Test: %{build_url}" From 8a1655720d85efec6de8e4ce65f4031147dd00fc Mon Sep 17 00:00:00 2001 From: MKzero Date: Thu, 5 Nov 2015 14:18:20 +0100 Subject: [PATCH 4/8] Added flake8(pep8/pyflakes/mccabe test) to travis config --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 81666e5..f358f05 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: python + python: - "2.7" - "3.2" @@ -6,8 +7,13 @@ python: before_install: - git submodule update --init --recursive + - pip install flake8 + +install: + - pip install -r contrib/requirements.txt -install: true +script: + - flake8 . git: submodules: false From b52062d409b174cea172309e3968585b609d972c Mon Sep 17 00:00:00 2001 From: MKzero Date: Thu, 5 Nov 2015 14:38:06 +0100 Subject: [PATCH 5/8] Removed Python 3.3 from travis checks - won't even install all required pip packages --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f358f05..b067cc5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ language: python python: - "2.7" - "3.2" - - "3.3" before_install: - git submodule update --init --recursive From 38a33424d7f5694b9eea3b20e6bb32c6fcc828a1 Mon Sep 17 00:00:00 2001 From: MKzero Date: Thu, 5 Nov 2015 15:07:44 +0100 Subject: [PATCH 6/8] Removed use_notice irc option for travis --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b067cc5..7b32d3f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,6 @@ notifications: irc: channels: - "ircs:irc.hackint.net:9999#bytespeicher-testing" - use_notice: true skip_join: true template: - "%{repository_slug} (%{commit}) : %{message}" From 3c18fff59342065c87b90267b316e4d726251879 Mon Sep 17 00:00:00 2001 From: MKzero Date: Thu, 5 Nov 2015 15:18:12 +0100 Subject: [PATCH 7/8] Added option for new travis infrastructure see http://docs.travis-ci.com/user/migrating-from-legacy/ --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 7b32d3f..b80a758 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: python +sudo: false python: - "2.7" From f6b0ebfdd338c05efc311af0197712555f49fa15 Mon Sep 17 00:00:00 2001 From: MKzero Date: Thu, 5 Nov 2015 15:31:48 +0100 Subject: [PATCH 8/8] Added travis cache handler for dependency caching --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index b80a758..2a5f120 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: python sudo: false +cache: bundler python: - "2.7"