From e1b3b7a0adaf4d2e98eefb50b6ee9f305fb6efd4 Mon Sep 17 00:00:00 2001 From: Vidya Raghavan Date: Tue, 1 Jul 2014 11:45:58 +0530 Subject: [PATCH 01/32] Update shippable.yml --- shippable.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 3bdcdf82..34e81b8e 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,8 +1,13 @@ language: python python: + - 2.6 - 2.7 - + - 3.2 + - 3.3 + - 3.4 + - pypy + install: - pip install -r requirements.txt @@ -14,4 +19,8 @@ before_script: script: - nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml - which python && coverage run --branch test.py - - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py \ No newline at end of file + - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py + +notifications: + email: + - exampleone@org.com From de9d2fdb6383dbaa8cf63b4c5897b1fa5ea68b71 Mon Sep 17 00:00:00 2001 From: Patrick Ellis Date: Tue, 22 Jul 2014 11:48:12 -0700 Subject: [PATCH 02/32] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ec522d27..0f675189 100755 --- a/README.md +++ b/README.md @@ -2,3 +2,5 @@ Python Sample ===================== Simple Python sample with tests using Nose and Coverage. + +This sample is built for Shippable, a docker based continuous integration and deployment platform. From bbf732f772dfa47312784cc11d1a262d5a8fd2ac Mon Sep 17 00:00:00 2001 From: ragsden Date: Thu, 16 Oct 2014 12:29:57 -0700 Subject: [PATCH 03/32] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 34e81b8e..eda56114 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,5 +1,5 @@ language: python - +build_image: shippableimages/ubuntu1204_python python: - 2.6 - 2.7 From c96f438d44a240e954af336d86e0a93877a453f7 Mon Sep 17 00:00:00 2001 From: himanshu0503 Date: Thu, 20 Aug 2015 13:00:39 +0530 Subject: [PATCH 04/32] Adds javaException --- javaExc.txt | 4 ++++ shippable.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 javaExc.txt diff --git a/javaExc.txt b/javaExc.txt new file mode 100644 index 00000000..baf4ae2c --- /dev/null +++ b/javaExc.txt @@ -0,0 +1,4 @@ +Exception in thread "main" java.lang.NullPointerException + at com.example.myproject.Book.getTitle(Book.java:16) + at com.example.myproject.Author.getBookTitles(Author.java:25) + at com.example.myproject.Bootstrap.main(Bootstrap.java:14) diff --git a/shippable.yml b/shippable.yml index eda56114..e041640a 100755 --- a/shippable.yml +++ b/shippable.yml @@ -20,7 +20,7 @@ script: - nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml - which python && coverage run --branch test.py - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py - + - cat javaExc.txt notifications: email: - exampleone@org.com From 3d68e5924d5f9c678d9b8ce680c50c7a459b4a48 Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Wed, 2 Sep 2015 12:46:31 +0530 Subject: [PATCH 05/32] Update shippable.yml --- shippable.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/shippable.yml b/shippable.yml index e041640a..169237c7 100755 --- a/shippable.yml +++ b/shippable.yml @@ -2,11 +2,6 @@ language: python build_image: shippableimages/ubuntu1204_python python: - 2.6 - - 2.7 - - 3.2 - - 3.3 - - 3.4 - - pypy install: - pip install -r requirements.txt From 959ae1ecd92f46d088318d82e393e22881582caf Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Wed, 2 Sep 2015 14:57:55 +0530 Subject: [PATCH 06/32] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index 169237c7..07e9d443 100755 --- a/shippable.yml +++ b/shippable.yml @@ -16,6 +16,8 @@ script: - which python && coverage run --branch test.py - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py - cat javaExc.txt + - echo -e "\e[31mHello World\e[0m" + notifications: email: - exampleone@org.com From d27e5fd98c2f6359929042b27c4b26e25fef74fd Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Wed, 2 Dec 2015 15:11:42 +0530 Subject: [PATCH 07/32] Update shippable.yml --- shippable.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/shippable.yml b/shippable.yml index 07e9d443..2a2b59f1 100755 --- a/shippable.yml +++ b/shippable.yml @@ -17,7 +17,3 @@ script: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py - cat javaExc.txt - echo -e "\e[31mHello World\e[0m" - -notifications: - email: - - exampleone@org.com From 35f726a86b412269bda9f074d72676552b4458ca Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Wed, 2 Dec 2015 15:16:53 +0530 Subject: [PATCH 08/32] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index e090dee3..89d6d59f 100755 --- a/test.py +++ b/test.py @@ -6,7 +6,7 @@ class TestSuite(unittest.TestCase): def test(self): app = App() app.calculate() - self.failIf(app.retrieve() != 62) + self.failIf(app.retrieve() != 61) def main(): From 33c74721a4c0859fb53acb4023b7de788be40e71 Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Wed, 2 Dec 2015 15:17:34 +0530 Subject: [PATCH 09/32] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 89d6d59f..e090dee3 100755 --- a/test.py +++ b/test.py @@ -6,7 +6,7 @@ class TestSuite(unittest.TestCase): def test(self): app = App() app.calculate() - self.failIf(app.retrieve() != 61) + self.failIf(app.retrieve() != 62) def main(): From 8e4d47eaa9d473d030bce7fe4e46deb9f2a155ce Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Wed, 2 Dec 2015 15:35:58 +0530 Subject: [PATCH 10/32] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index e090dee3..89d6d59f 100755 --- a/test.py +++ b/test.py @@ -6,7 +6,7 @@ class TestSuite(unittest.TestCase): def test(self): app = App() app.calculate() - self.failIf(app.retrieve() != 62) + self.failIf(app.retrieve() != 61) def main(): From c2741fc500d55040b500208f6280c1132efeae6d Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Wed, 2 Dec 2015 15:37:53 +0530 Subject: [PATCH 11/32] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 89d6d59f..e090dee3 100755 --- a/test.py +++ b/test.py @@ -6,7 +6,7 @@ class TestSuite(unittest.TestCase): def test(self): app = App() app.calculate() - self.failIf(app.retrieve() != 61) + self.failIf(app.retrieve() != 62) def main(): From 264176e4c96fffbb4021898c4130e5424e1d446e Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Tue, 8 Dec 2015 14:11:49 +0530 Subject: [PATCH 12/32] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index e090dee3..89d6d59f 100755 --- a/test.py +++ b/test.py @@ -6,7 +6,7 @@ class TestSuite(unittest.TestCase): def test(self): app = App() app.calculate() - self.failIf(app.retrieve() != 62) + self.failIf(app.retrieve() != 61) def main(): From 59ad4fcd54552af63b026b19a6b772cb1223e3e0 Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Tue, 8 Dec 2015 14:26:40 +0530 Subject: [PATCH 13/32] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 89d6d59f..e090dee3 100755 --- a/test.py +++ b/test.py @@ -6,7 +6,7 @@ class TestSuite(unittest.TestCase): def test(self): app = App() app.calculate() - self.failIf(app.retrieve() != 61) + self.failIf(app.retrieve() != 62) def main(): From 4fc31df2dd51b3d7663314fac540ef19013db79a Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Mon, 14 Dec 2015 14:04:34 +0530 Subject: [PATCH 14/32] Update shippable.yml --- shippable.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/shippable.yml b/shippable.yml index 2a2b59f1..d7984ff7 100755 --- a/shippable.yml +++ b/shippable.yml @@ -17,3 +17,26 @@ script: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py - cat javaExc.txt - echo -e "\e[31mHello World\e[0m" + +notifications: + - email: + recipients: + - chandrakanth@shippable.com + - vishal.chandru@gmail.com + - -- last_committer + on_success: change + on_failure: change + on_start: always + on_pull_request: never + - slack: + account_integration: 566e4536b6bf9f1100524787 + recipients: + - '#slacktestck' + on_success: always + on_failure: always + on_start: always + on_pull_request: always + - irc: + on_pull_request: true + channels: + - "chat.freenode.net#chandratest" From e9a42fae03c781ded64b6a3952de3bc578b47179 Mon Sep 17 00:00:00 2001 From: Chandrakanth Date: Mon, 14 Dec 2015 19:34:34 +0530 Subject: [PATCH 15/32] Update shippable.yml --- shippable.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index d7984ff7..a7634d03 100755 --- a/shippable.yml +++ b/shippable.yml @@ -37,6 +37,9 @@ notifications: on_start: always on_pull_request: always - irc: - on_pull_request: true - channels: + recipients: - "chat.freenode.net#chandratest" + on_failure: always + on_start: always + on_pull_request: always + on_success: always From ffa73fe5e0635f31e787d19f55e6f4760f7ed129 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Wed, 16 Dec 2015 18:34:28 +0530 Subject: [PATCH 16/32] Update shippable.yml --- shippable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index a7634d03..86cac5ed 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,8 @@ language: python -build_image: shippableimages/ubuntu1204_python +build_image: shippable/minv2 python: - 2.6 + - 3.2 install: - pip install -r requirements.txt From 71d9008ae1b23794eda18ff2f565fe933cdcb243 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Wed, 16 Dec 2015 18:43:19 +0530 Subject: [PATCH 17/32] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index e090dee3..4ea4dc4c 100755 --- a/test.py +++ b/test.py @@ -6,7 +6,7 @@ class TestSuite(unittest.TestCase): def test(self): app = App() app.calculate() - self.failIf(app.retrieve() != 62) + self.failIf(app.retrieve() != 6) def main(): From 4fa5f0b685d6da4b98e006896f8d859cf84731c0 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Wed, 16 Dec 2015 18:50:13 +0530 Subject: [PATCH 18/32] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 4ea4dc4c..e090dee3 100755 --- a/test.py +++ b/test.py @@ -6,7 +6,7 @@ class TestSuite(unittest.TestCase): def test(self): app = App() app.calculate() - self.failIf(app.retrieve() != 6) + self.failIf(app.retrieve() != 62) def main(): From 262609c41b5da751e0b761c8d4a5655b51a99c04 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Wed, 23 Dec 2015 16:40:50 +0530 Subject: [PATCH 19/32] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 86cac5ed..9d979dfe 100755 --- a/shippable.yml +++ b/shippable.yml @@ -44,3 +44,4 @@ notifications: on_start: always on_pull_request: always on_success: always + From 57f5cf312184ac895c04a0f14d5e78b9b88e396c Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Thu, 24 Dec 2015 14:17:44 +0530 Subject: [PATCH 20/32] Update shippable.yml --- shippable.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/shippable.yml b/shippable.yml index 9d979dfe..b2a48151 100755 --- a/shippable.yml +++ b/shippable.yml @@ -2,7 +2,7 @@ language: python build_image: shippable/minv2 python: - 2.6 - - 3.2 + # - 3.2 install: - pip install -r requirements.txt @@ -22,21 +22,21 @@ script: notifications: - email: recipients: - - chandrakanth@shippable.com - - vishal.chandru@gmail.com - - -- last_committer - on_success: change - on_failure: change - on_start: always - on_pull_request: never - - slack: - account_integration: 566e4536b6bf9f1100524787 - recipients: - - '#slacktestck' + - varsha@shippable.com + - notify_ci34@yahoo.in + # - -- last_committer on_success: always on_failure: always on_start: always on_pull_request: always +# - slack: + # account_integration: 566e4536b6bf9f1100524787 + # recipients: + # - '#slacktestck' + #on_success: always + #on_failure: always + #on_start: change + #on_pull_request: never - irc: recipients: - "chat.freenode.net#chandratest" From 65cb3282ab6dcd9c2a5c3f696eb72af95627b6b8 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Thu, 24 Dec 2015 14:21:02 +0530 Subject: [PATCH 21/32] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index b2a48151..bbc5a4ce 100755 --- a/shippable.yml +++ b/shippable.yml @@ -39,7 +39,7 @@ notifications: #on_pull_request: never - irc: recipients: - - "chat.freenode.net#chandratest" + - "chat.freenode.net#test-irc" on_failure: always on_start: always on_pull_request: always From 96082a60d5a79019634bc7a90fe19389090d9483 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Tue, 12 Jan 2016 15:25:11 +0530 Subject: [PATCH 22/32] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index bbc5a4ce..8e6eea1e 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,5 +1,5 @@ language: python -build_image: shippable/minv2 + python: - 2.6 # - 3.2 From 86c28131afe602bcb544dbb2032607a111cd4a14 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Tue, 19 Jan 2016 13:44:21 +0530 Subject: [PATCH 23/32] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 8e6eea1e..c55f5f2f 100755 --- a/shippable.yml +++ b/shippable.yml @@ -45,3 +45,4 @@ notifications: on_pull_request: always on_success: always +cache: true From a6501b3aa7e87970de8bc11c650c7d0a4de2f693 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Tue, 19 Jan 2016 13:52:18 +0530 Subject: [PATCH 24/32] [reset_minion] From c72ab8ba1ed143049bdaaf4b46f3251283d2315b Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Tue, 19 Jan 2016 13:54:30 +0530 Subject: [PATCH 25/32] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index c55f5f2f..ec4b7054 100755 --- a/shippable.yml +++ b/shippable.yml @@ -46,3 +46,5 @@ notifications: on_success: always cache: true + +archive: true From 35c3703a362568da1c350f76ed43d648de723f05 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Tue, 19 Jan 2016 17:59:07 +0530 Subject: [PATCH 26/32] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index ec4b7054..f2546231 100755 --- a/shippable.yml +++ b/shippable.yml @@ -47,4 +47,4 @@ notifications: cache: true -archive: true +#archive: true From 9e0714783ccec6a8b8e0d4c89bb28179927b28b0 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Tue, 7 Jun 2016 11:03:23 +0530 Subject: [PATCH 27/32] Update shippable.yml --- shippable.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index f2546231..89e5e715 100755 --- a/shippable.yml +++ b/shippable.yml @@ -2,7 +2,13 @@ language: python python: - 2.6 - # - 3.2 + - 2.7 + - 3.2 + - 3.3 + - 3.4 + - 3.5 + - pypy + - pypy3 install: - pip install -r requirements.txt @@ -45,6 +51,6 @@ notifications: on_pull_request: always on_success: always -cache: true +#cache: true #archive: true From 0804c65db904738e2f1dfda1c4c25ccdecaff912 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Tue, 7 Jun 2016 11:10:45 +0530 Subject: [PATCH 28/32] Update shippable.yml --- shippable.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shippable.yml b/shippable.yml index 89e5e715..2ff735d4 100755 --- a/shippable.yml +++ b/shippable.yml @@ -10,6 +10,10 @@ python: - pypy - pypy3 +env: + - FOO=TEST + - TEST=BOO + install: - pip install -r requirements.txt From fb828f3f22e1f1bc8988c3c984bc051a5a9de53b Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Thu, 9 Jun 2016 15:06:54 +0530 Subject: [PATCH 29/32] Update shippable.yml --- shippable.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/shippable.yml b/shippable.yml index 2ff735d4..5582d1d2 100755 --- a/shippable.yml +++ b/shippable.yml @@ -2,13 +2,13 @@ language: python python: - 2.6 - - 2.7 - - 3.2 - - 3.3 - - 3.4 - - 3.5 - - pypy - - pypy3 + # - 2.7 + #- 3.2 + #- 3.3 + #- 3.4 + #- 3.5 + #- pypy + #- pypy3 env: - FOO=TEST From 31164594f9d6417cb75a880f64268a8208079f6a Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Thu, 9 Jun 2016 15:48:43 +0530 Subject: [PATCH 30/32] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 5582d1d2..810f892d 100755 --- a/shippable.yml +++ b/shippable.yml @@ -55,6 +55,6 @@ notifications: on_pull_request: always on_success: always -#cache: true +#cache: true #archive: true From e36a84dfc16648509e9c66aed6ec53531fb813cf Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Thu, 9 Jun 2016 15:55:35 +0530 Subject: [PATCH 31/32] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 810f892d..d3185249 100755 --- a/shippable.yml +++ b/shippable.yml @@ -2,7 +2,7 @@ language: python python: - 2.6 - # - 2.7 + # - 2.7 #- 3.2 #- 3.3 #- 3.4 From 307c543e8477065ca759b4154f88ec94d402afd2 Mon Sep 17 00:00:00 2001 From: notify-ci2 Date: Thu, 9 Jun 2016 16:18:31 +0530 Subject: [PATCH 32/32] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index d3185249..f14e1792 100755 --- a/shippable.yml +++ b/shippable.yml @@ -51,7 +51,7 @@ notifications: recipients: - "chat.freenode.net#test-irc" on_failure: always - on_start: always + on_start: always on_pull_request: always on_success: always