From 14ae8ef41376e43bb28ad48b578adcd3908621ac Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 6 Jun 2014 16:55:45 +0530 Subject: [PATCH 01/66] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index 6b6db7b..c1058d2 100644 --- a/shippable.yml +++ b/shippable.yml @@ -14,6 +14,8 @@ before_script: - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage + + script: - nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml - which python && coverage run --branch test.py From 9de8a9af98f20bc4010171eadc65378b8e3b08ca Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 10 Jun 2014 12:08:56 +0530 Subject: [PATCH 02/66] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d9b7e35..93ac5be 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,4 @@ Python PostgreSQL Sample [![Build Status](https://apibeta.shippable.com/projects ====================== Tests basic SQL commands using the psycopg2 driver for Python. +jun 10 From 3872ae09e2765c103497f01b2aab24f762796bb7 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 24 Jun 2014 12:00:25 +0530 Subject: [PATCH 03/66] Update shippable.yml --- shippable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index c1058d2..34f601d 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,7 @@ language: python -python: - - 2.7 +#python: + # - 2.7 install: - pip install -r requirements.txt From 18ae7839dc8e69664e05a23b7584e44875446366 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 7 Oct 2014 12:15:07 +0530 Subject: [PATCH 04/66] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 34f601d..1ee2ae1 100644 --- a/shippable.yml +++ b/shippable.yml @@ -20,3 +20,4 @@ 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 +cache: true From d842408b4ecc660766eb09d0838c56bed39d41e2 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 7 Oct 2014 17:13:12 +0530 Subject: [PATCH 05/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 1ee2ae1..5e0738a 100644 --- a/shippable.yml +++ b/shippable.yml @@ -20,4 +20,4 @@ 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 -cache: true +#cache: true From e27e2a9bd2b4beff1d91c7e029a7777cc2b4b1b0 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 7 Oct 2014 17:16:52 +0530 Subject: [PATCH 06/66] Update shippable.yml --- shippable.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 5e0738a..afaec9f 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,8 @@ language: python -#python: - # - 2.7 +python: + - 2.7 + - 2.6 install: - pip install -r requirements.txt From 2c6f2fd190dcee192af7e5847147f77b0c6e1243 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 7 Oct 2014 18:12:49 +0530 Subject: [PATCH 07/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index afaec9f..5ad32ac 100644 --- a/shippable.yml +++ b/shippable.yml @@ -11,7 +11,7 @@ install: # Create a DB as part of before script to use it before_script: - - psql -c 'create database test;' -U postgres + - psql -c 'create database if not exists `test`;' -U postgres - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From 4c539e514723e93ab0076f0f03e033fa2a425612 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 7 Oct 2014 18:13:51 +0530 Subject: [PATCH 08/66] Update shippable.yml --- shippable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 5ad32ac..91a69c9 100644 --- a/shippable.yml +++ b/shippable.yml @@ -2,7 +2,7 @@ language: python python: - 2.7 - - 2.6 + #- 2.6 install: - pip install -r requirements.txt @@ -11,7 +11,7 @@ install: # Create a DB as part of before script to use it before_script: - - psql -c 'create database if not exists `test`;' -U postgres + - psql -c 'create database if not exists test;' -U postgres - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From 89d9fd229a372c0b189f09434c5fed2bb10710da Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 7 Oct 2014 18:18:23 +0530 Subject: [PATCH 09/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 91a69c9..dd714cf 100644 --- a/shippable.yml +++ b/shippable.yml @@ -11,7 +11,7 @@ install: # Create a DB as part of before script to use it before_script: - - psql -c 'create database if not exists test;' -U postgres + - psql -c "create database IF NOT EXISTS test;" -U postgres - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From 7a112bfc36e196f39f869252ee9c0bcfc4460c46 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 7 Oct 2014 18:38:26 +0530 Subject: [PATCH 10/66] Update shippable.yml --- shippable.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index dd714cf..2680af9 100644 --- a/shippable.yml +++ b/shippable.yml @@ -11,7 +11,8 @@ install: # Create a DB as part of before script to use it before_script: - - psql -c "create database IF NOT EXISTS test;" -U postgres + - psql -c 'drop database if exists test;' -U postgres -w + - psql -c "create database test;" -U postgres - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage @@ -21,4 +22,5 @@ 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 + #cache: true From 2d5f5049461d69b88375b65a2b91d074d5b19f14 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 7 Oct 2014 18:39:26 +0530 Subject: [PATCH 11/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 2680af9..307439e 100644 --- a/shippable.yml +++ b/shippable.yml @@ -23,4 +23,4 @@ script: - which python && coverage run --branch test.py - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py -#cache: true +cache: true From a3a2552c184b1cb71883e0935a187f466929ec00 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 7 Oct 2014 18:41:26 +0530 Subject: [PATCH 12/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 307439e..e34b12c 100644 --- a/shippable.yml +++ b/shippable.yml @@ -2,7 +2,7 @@ language: python python: - 2.7 - #- 2.6 + - 2.6 install: - pip install -r requirements.txt From 3125d95bf85e16a1ffd58d2be9c7fc2347a826dc Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 8 Oct 2014 16:31:29 +0530 Subject: [PATCH 13/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index e34b12c..a74607d 100644 --- a/shippable.yml +++ b/shippable.yml @@ -23,4 +23,4 @@ script: - which python && coverage run --branch test.py - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py -cache: true +#cache: true From 9f81199236c8646f7f8c2ea782f8e60208f28505 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 10 Oct 2014 17:33:18 +0530 Subject: [PATCH 14/66] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index a74607d..62c7f04 100644 --- a/shippable.yml +++ b/shippable.yml @@ -10,6 +10,7 @@ install: # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it + before_script: - psql -c 'drop database if exists test;' -U postgres -w - psql -c "create database test;" -U postgres @@ -18,6 +19,7 @@ before_script: + script: - nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml - which python && coverage run --branch test.py From 090e71718b817c56fcd15c59c89a0cd5825b3de9 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 14 Oct 2014 22:41:34 +0530 Subject: [PATCH 15/66] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index 62c7f04..d1e19a3 100644 --- a/shippable.yml +++ b/shippable.yml @@ -26,3 +26,5 @@ script: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py #cache: true +after_script: + - cp README.md ./shippable From 464442079e2ea682bb337ceff1276706c95bcd91 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 14 Oct 2014 22:43:13 +0530 Subject: [PATCH 16/66] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index df9deba..9eae9ba 100644 --- a/test.py +++ b/test.py @@ -8,7 +8,7 @@ def test_db(self): pg = Postgres() pg.populate() count = pg.read() - self.failIf(count != 5) + self.failIf(count != 6) pg.disconnect() From e74db064cb96edebdf9a360cadd045e50eb322e7 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 16 Oct 2014 14:48:38 +0530 Subject: [PATCH 17/66] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 9eae9ba..df9deba 100644 --- a/test.py +++ b/test.py @@ -8,7 +8,7 @@ def test_db(self): pg = Postgres() pg.populate() count = pg.read() - self.failIf(count != 6) + self.failIf(count != 5) pg.disconnect() From 0057ca07ccb7fb66d304ae208614028df7542b83 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 16 Oct 2014 17:45:04 +0530 Subject: [PATCH 18/66] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index d1e19a3..488ebac 100644 --- a/shippable.yml +++ b/shippable.yml @@ -28,3 +28,4 @@ script: #cache: true after_script: - cp README.md ./shippable +archive: true From 2dd72db71e1fecabdbe59c17a10552071fab605a Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 29 Oct 2014 16:40:10 +0530 Subject: [PATCH 19/66] Update shippable.yml --- shippable.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/shippable.yml b/shippable.yml index 488ebac..39ce1f9 100644 --- a/shippable.yml +++ b/shippable.yml @@ -29,3 +29,9 @@ script: after_script: - cp README.md ./shippable archive: true +notifications: + email: + recipients: + - buildsampletest@gmail.com + on_success: always + on_failure: always From a9ef97b8917f92d8a93708a60eb3752cb4d64446 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 29 Oct 2014 16:41:41 +0530 Subject: [PATCH 20/66] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index df9deba..f076672 100644 --- a/test.py +++ b/test.py @@ -8,7 +8,7 @@ def test_db(self): pg = Postgres() pg.populate() count = pg.read() - self.failIf(count != 5) + self.failIf(count != 4) pg.disconnect() From e1b6db386c4016d24e46868a96f047333d4c747e Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 5 Nov 2014 15:28:13 +0530 Subject: [PATCH 21/66] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index f076672..df9deba 100644 --- a/test.py +++ b/test.py @@ -8,7 +8,7 @@ def test_db(self): pg = Postgres() pg.populate() count = pg.read() - self.failIf(count != 4) + self.failIf(count != 5) pg.disconnect() From c0f0d9f47976c0493baf4192297f91b6fd83829b Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 5 Nov 2014 15:29:47 +0530 Subject: [PATCH 22/66] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 93ac5be..2b26a1c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ -Python PostgreSQL Sample [![Build Status](https://apibeta.shippable.com/projects/537a4464326b4d0f004a357e/badge/master)](https://beta.shippable.com/projects/537a4464326b4d0f004a357e) +Python PostgreSQL Sample [![Build ====================== Tests basic SQL commands using the psycopg2 driver for Python. jun 10 +[![Build Status](https://apibeta.shippable.com/projects/5420089b76d0c288e441e5fa/badge?branchName=master)](https://appbeta.shippable.com/projects/5420089b76d0c288e441e5fa/builds/latest) From c6183f043eee383a42ae8819fea8f908c652d91e Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 5 Nov 2014 15:31:45 +0530 Subject: [PATCH 23/66] Update shippable.yml --- shippable.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index 39ce1f9..e57e268 100644 --- a/shippable.yml +++ b/shippable.yml @@ -16,19 +16,20 @@ before_script: - psql -c "create database test;" -U postgres - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage - - - + - echo $key1 and $key2 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 +env: + - secure: e3IF2H+i8bq+GzgbMoR1WY5WAYqOYviZWWUQobtNAVW0Lq1N1EJURJ98L34vf7Yrsx9YBuaOGAcRFx7MDNyrNtmPkXtZVkODSBzRIwwwCO3D3wrSIig6QxvRGRmDMIIMFFTf92SRcu0WfwD+qe9aQSH5hDM5uqOQX7tsD+xScaiGF5ShvhrBjHZNOq7LlLwU1LpmJCj7RlwzCVGSqdUicAhhh5xBK+QmJkC6BQWJq9OZsNchwQKDmacDoyZbqrpSmclbkNuSG6x6EE0HZ/WKYbadCjxRMFtk0wVsQsfkMh42/jNMalkLDpMBfa+/3C6nwanXm0yfqdMdAi+IGv9xUA== #cache: true after_script: - cp README.md ./shippable archive: true + notifications: email: recipients: From 5695ec999f71e89976d6256a81e14cdb82f470e1 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 17:25:49 +0530 Subject: [PATCH 24/66] [shippable new build status flow] --- shippable.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index e57e268..665ffd5 100644 --- a/shippable.yml +++ b/shippable.yml @@ -9,8 +9,6 @@ install: # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it - - before_script: - psql -c 'drop database if exists test;' -U postgres -w - psql -c "create database test;" -U postgres From 83baf28dc362ba55b8b0dcaae5ec6e56d5fdf00e Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 17:31:29 +0530 Subject: [PATCH 25/66] [shippable new build status flow] --- shippable.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shippable.yml b/shippable.yml index 665ffd5..51a9b4a 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,11 +1,13 @@ language: python + python: - 2.7 - 2.6 install: - pip install -r requirements.txt + # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it @@ -21,6 +23,7 @@ script: - which python && coverage run --branch test.py - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py + env: - secure: e3IF2H+i8bq+GzgbMoR1WY5WAYqOYviZWWUQobtNAVW0Lq1N1EJURJ98L34vf7Yrsx9YBuaOGAcRFx7MDNyrNtmPkXtZVkODSBzRIwwwCO3D3wrSIig6QxvRGRmDMIIMFFTf92SRcu0WfwD+qe9aQSH5hDM5uqOQX7tsD+xScaiGF5ShvhrBjHZNOq7LlLwU1LpmJCj7RlwzCVGSqdUicAhhh5xBK+QmJkC6BQWJq9OZsNchwQKDmacDoyZbqrpSmclbkNuSG6x6EE0HZ/WKYbadCjxRMFtk0wVsQsfkMh42/jNMalkLDpMBfa+/3C6nwanXm0yfqdMdAi+IGv9xUA== #cache: true From 2764703489e04c2dbd86bd127813d46ab78db073 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 5 Dec 2014 18:42:19 +0530 Subject: [PATCH 26/66] Update shippable.yml --- shippable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 51a9b4a..7f73093 100644 --- a/shippable.yml +++ b/shippable.yml @@ -8,7 +8,8 @@ python: install: - pip install -r requirements.txt - +addons: + postgresql: "9.1" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From 99521633ded6be6deff1eee0961a1f2451cb6d5b Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 5 Dec 2014 18:43:29 +0530 Subject: [PATCH 27/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 7f73093..d3df5b9 100644 --- a/shippable.yml +++ b/shippable.yml @@ -9,7 +9,7 @@ install: - pip install -r requirements.txt addons: - postgresql: "9.1" + postgresql: "9.2" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From 64a71862f4aca9c96ff662e2d87f1ff46f0eff98 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 5 Dec 2014 18:43:42 +0530 Subject: [PATCH 28/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index d3df5b9..745fc52 100644 --- a/shippable.yml +++ b/shippable.yml @@ -9,7 +9,7 @@ install: - pip install -r requirements.txt addons: - postgresql: "9.2" + postgresql: "9.3" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From 9ca309efeb67e8a8349c280056b7691b5a2a3f01 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 7 Jan 2015 15:01:42 +0530 Subject: [PATCH 29/66] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 745fc52..b057239 100644 --- a/shippable.yml +++ b/shippable.yml @@ -38,3 +38,4 @@ notifications: - buildsampletest@gmail.com on_success: always on_failure: always +build_image: shippable/minv2:beta From 2f3d174a3b212f205238976c7df0a321cabd2763 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 14 Jan 2015 12:19:12 +0530 Subject: [PATCH 30/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index b057239..a323bd2 100644 --- a/shippable.yml +++ b/shippable.yml @@ -38,4 +38,4 @@ notifications: - buildsampletest@gmail.com on_success: always on_failure: always -build_image: shippable/minv2:beta +#build_image: shippable/minv2:beta From 6abb743ca640123001879e4f4808175a0cd5b7ca Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 19 Jan 2015 13:53:39 +0530 Subject: [PATCH 31/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index a323bd2..b057239 100644 --- a/shippable.yml +++ b/shippable.yml @@ -38,4 +38,4 @@ notifications: - buildsampletest@gmail.com on_success: always on_failure: always -#build_image: shippable/minv2:beta +build_image: shippable/minv2:beta From a008ba3b870dde258585da623a2512e33fb0c75b Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 19 Jan 2015 13:55:32 +0530 Subject: [PATCH 32/66] Update shippable.yml --- shippable.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index b057239..ec2d0c6 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,6 +1,5 @@ language: python - python: - 2.7 - 2.6 From f5b5079abaef12bdb5a23bfd960e13900defb835 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 4 Feb 2015 12:32:47 +0530 Subject: [PATCH 33/66] Update shippable.yml --- shippable.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index ec2d0c6..c16a6b1 100644 --- a/shippable.yml +++ b/shippable.yml @@ -16,15 +16,15 @@ before_script: - psql -c "create database test;" -U postgres - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage - - echo $key1 and $key2 + - echo $key1 and $key2 and $FOO 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 - env: + - FOO=fooval SHIPPABLE_POSTGRES_CMD='sudo -u postgres $SHIPPABLE_POSTGRES_BINARY -c config_file=/etc/postgresql/$SHIPPABLE_POSTGRES_VERSION/main/postgresql.conf -c fsync=off' - secure: e3IF2H+i8bq+GzgbMoR1WY5WAYqOYviZWWUQobtNAVW0Lq1N1EJURJ98L34vf7Yrsx9YBuaOGAcRFx7MDNyrNtmPkXtZVkODSBzRIwwwCO3D3wrSIig6QxvRGRmDMIIMFFTf92SRcu0WfwD+qe9aQSH5hDM5uqOQX7tsD+xScaiGF5ShvhrBjHZNOq7LlLwU1LpmJCj7RlwzCVGSqdUicAhhh5xBK+QmJkC6BQWJq9OZsNchwQKDmacDoyZbqrpSmclbkNuSG6x6EE0HZ/WKYbadCjxRMFtk0wVsQsfkMh42/jNMalkLDpMBfa+/3C6nwanXm0yfqdMdAi+IGv9xUA== #cache: true after_script: @@ -37,4 +37,5 @@ notifications: - buildsampletest@gmail.com on_success: always on_failure: always -build_image: shippable/minv2:beta + +#build_image: shippable/minv2:beta From 924f27ad40ca6864334412dd04bf5bac5bfc651b Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 4 Feb 2015 12:34:28 +0530 Subject: [PATCH 34/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index c16a6b1..be0dff2 100644 --- a/shippable.yml +++ b/shippable.yml @@ -8,7 +8,7 @@ install: - pip install -r requirements.txt addons: - postgresql: "9.3" + postgresql: "9.2" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From ec089e7cd4871acb496994fad6b548bfcf0a8c42 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 4 Feb 2015 12:39:09 +0530 Subject: [PATCH 35/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index be0dff2..07a97bf 100644 --- a/shippable.yml +++ b/shippable.yml @@ -8,7 +8,7 @@ install: - pip install -r requirements.txt addons: - postgresql: "9.2" + postgresql: "9.4" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From 23e10ba44c44eda74cbad417dcbbb615ade5eedb Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 4 Feb 2015 12:40:50 +0530 Subject: [PATCH 36/66] Update shippable.yml --- shippable.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 07a97bf..108a526 100644 --- a/shippable.yml +++ b/shippable.yml @@ -8,7 +8,7 @@ install: - pip install -r requirements.txt addons: - postgresql: "9.4" + postgresql: "9.3" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: @@ -24,8 +24,9 @@ script: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py env: + global: - FOO=fooval SHIPPABLE_POSTGRES_CMD='sudo -u postgres $SHIPPABLE_POSTGRES_BINARY -c config_file=/etc/postgresql/$SHIPPABLE_POSTGRES_VERSION/main/postgresql.conf -c fsync=off' - - secure: e3IF2H+i8bq+GzgbMoR1WY5WAYqOYviZWWUQobtNAVW0Lq1N1EJURJ98L34vf7Yrsx9YBuaOGAcRFx7MDNyrNtmPkXtZVkODSBzRIwwwCO3D3wrSIig6QxvRGRmDMIIMFFTf92SRcu0WfwD+qe9aQSH5hDM5uqOQX7tsD+xScaiGF5ShvhrBjHZNOq7LlLwU1LpmJCj7RlwzCVGSqdUicAhhh5xBK+QmJkC6BQWJq9OZsNchwQKDmacDoyZbqrpSmclbkNuSG6x6EE0HZ/WKYbadCjxRMFtk0wVsQsfkMh42/jNMalkLDpMBfa+/3C6nwanXm0yfqdMdAi+IGv9xUA== + # - secure: e3IF2H+i8bq+GzgbMoR1WY5WAYqOYviZWWUQobtNAVW0Lq1N1EJURJ98L34vf7Yrsx9YBuaOGAcRFx7MDNyrNtmPkXtZVkODSBzRIwwwCO3D3wrSIig6QxvRGRmDMIIMFFTf92SRcu0WfwD+qe9aQSH5hDM5uqOQX7tsD+xScaiGF5ShvhrBjHZNOq7LlLwU1LpmJCj7RlwzCVGSqdUicAhhh5xBK+QmJkC6BQWJq9OZsNchwQKDmacDoyZbqrpSmclbkNuSG6x6EE0HZ/WKYbadCjxRMFtk0wVsQsfkMh42/jNMalkLDpMBfa+/3C6nwanXm0yfqdMdAi+IGv9xUA== #cache: true after_script: - cp README.md ./shippable From 5639e4f4e6b2daa9b707f068a8e54cea254de113 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 5 Feb 2015 13:01:27 +0530 Subject: [PATCH 37/66] Update shippable.yml --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index 108a526..c9d4b16 100644 --- a/shippable.yml +++ b/shippable.yml @@ -23,9 +23,9 @@ script: - which python && coverage run --branch test.py - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py -env: - global: - - FOO=fooval SHIPPABLE_POSTGRES_CMD='sudo -u postgres $SHIPPABLE_POSTGRES_BINARY -c config_file=/etc/postgresql/$SHIPPABLE_POSTGRES_VERSION/main/postgresql.conf -c fsync=off' +#env: + #global: + # - FOO=fooval SHIPPABLE_POSTGRES_CMD='sudo -u postgres $SHIPPABLE_POSTGRES_BINARY -c config_file=/etc/postgresql/$SHIPPABLE_POSTGRES_VERSION/main/postgresql.conf -c fsync=off' # - secure: e3IF2H+i8bq+GzgbMoR1WY5WAYqOYviZWWUQobtNAVW0Lq1N1EJURJ98L34vf7Yrsx9YBuaOGAcRFx7MDNyrNtmPkXtZVkODSBzRIwwwCO3D3wrSIig6QxvRGRmDMIIMFFTf92SRcu0WfwD+qe9aQSH5hDM5uqOQX7tsD+xScaiGF5ShvhrBjHZNOq7LlLwU1LpmJCj7RlwzCVGSqdUicAhhh5xBK+QmJkC6BQWJq9OZsNchwQKDmacDoyZbqrpSmclbkNuSG6x6EE0HZ/WKYbadCjxRMFtk0wVsQsfkMh42/jNMalkLDpMBfa+/3C6nwanXm0yfqdMdAi+IGv9xUA== #cache: true after_script: From e44c2cae0435417a583acdd6080712de22de7e2f Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 5 Feb 2015 13:03:31 +0530 Subject: [PATCH 38/66] Update shippable.yml --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index c9d4b16..108a526 100644 --- a/shippable.yml +++ b/shippable.yml @@ -23,9 +23,9 @@ script: - which python && coverage run --branch test.py - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py -#env: - #global: - # - FOO=fooval SHIPPABLE_POSTGRES_CMD='sudo -u postgres $SHIPPABLE_POSTGRES_BINARY -c config_file=/etc/postgresql/$SHIPPABLE_POSTGRES_VERSION/main/postgresql.conf -c fsync=off' +env: + global: + - FOO=fooval SHIPPABLE_POSTGRES_CMD='sudo -u postgres $SHIPPABLE_POSTGRES_BINARY -c config_file=/etc/postgresql/$SHIPPABLE_POSTGRES_VERSION/main/postgresql.conf -c fsync=off' # - secure: e3IF2H+i8bq+GzgbMoR1WY5WAYqOYviZWWUQobtNAVW0Lq1N1EJURJ98L34vf7Yrsx9YBuaOGAcRFx7MDNyrNtmPkXtZVkODSBzRIwwwCO3D3wrSIig6QxvRGRmDMIIMFFTf92SRcu0WfwD+qe9aQSH5hDM5uqOQX7tsD+xScaiGF5ShvhrBjHZNOq7LlLwU1LpmJCj7RlwzCVGSqdUicAhhh5xBK+QmJkC6BQWJq9OZsNchwQKDmacDoyZbqrpSmclbkNuSG6x6EE0HZ/WKYbadCjxRMFtk0wVsQsfkMh42/jNMalkLDpMBfa+/3C6nwanXm0yfqdMdAi+IGv9xUA== #cache: true after_script: From 5fa0f04b79dd076fc940021451daaee6d742f5fe Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 5 Feb 2015 13:46:50 +0530 Subject: [PATCH 39/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 108a526..fe26434 100644 --- a/shippable.yml +++ b/shippable.yml @@ -8,7 +8,7 @@ install: - pip install -r requirements.txt addons: - postgresql: "9.3" + postgresql: "9.1" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From a1f83685e7ed0a561b86e0ee971043b1d3740195 Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 9 Mar 2015 16:58:10 +0530 Subject: [PATCH 40/66] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b26a1c..ba0e23d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -Python PostgreSQL Sample [![Build +Python PostgreSQL Sample +[![Build ====================== Tests basic SQL commands using the psycopg2 driver for Python. From 9c8330419530882d8529c528fe9bee3fb6af8f88 Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 9 Mar 2015 17:02:21 +0530 Subject: [PATCH 41/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index fe26434..108a526 100644 --- a/shippable.yml +++ b/shippable.yml @@ -8,7 +8,7 @@ install: - pip install -r requirements.txt addons: - postgresql: "9.1" + postgresql: "9.3" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From 96cdc04ed44550be0f9ef861b3badcd9b00d0ec2 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 4 Dec 2015 14:13:15 +0530 Subject: [PATCH 42/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 108a526..76bf9b5 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,5 +1,5 @@ language: python - +build_image: drydock/u14pytpls:prod python: - 2.7 - 2.6 From fc984f375269d59d817c32339a3b979f95eb94cb Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 8 Dec 2015 17:39:26 +0530 Subject: [PATCH 43/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 76bf9b5..d3e60c0 100644 --- a/shippable.yml +++ b/shippable.yml @@ -8,7 +8,7 @@ install: - pip install -r requirements.txt addons: - postgresql: "9.3" + postgresql: "9.1" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From 4d8796d72233aab9bfd940492efee0f8b400be0b Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 8 Dec 2015 17:51:59 +0530 Subject: [PATCH 44/66] Update shippable.yml --- shippable.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shippable.yml b/shippable.yml index d3e60c0..d62ed44 100644 --- a/shippable.yml +++ b/shippable.yml @@ -17,6 +17,9 @@ before_script: - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage - echo $key1 and $key2 and $FOO + - psql --version + + script: - nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml From 44d78fe20b6cb3db4fdcde29202344707d27db7c Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 9 Dec 2015 13:21:37 +0530 Subject: [PATCH 45/66] Update shippable.yml --- shippable.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index d62ed44..ccbe123 100644 --- a/shippable.yml +++ b/shippable.yml @@ -19,7 +19,9 @@ before_script: - echo $key1 and $key2 and $FOO - psql --version - +services: +#- mysql + - postgres script: - nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml From d1e8721a6f148557642b08d75ec1c1d09349fce4 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 9 Dec 2015 13:25:52 +0530 Subject: [PATCH 46/66] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index ccbe123..01e78dd 100644 --- a/shippable.yml +++ b/shippable.yml @@ -7,6 +7,7 @@ python: install: - pip install -r requirements.txt + addons: postgresql: "9.1" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password From 8615d18cb66446b533ea7cbf632afea376fbcce8 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 9 Dec 2015 13:50:05 +0530 Subject: [PATCH 47/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 01e78dd..dff81e0 100644 --- a/shippable.yml +++ b/shippable.yml @@ -21,7 +21,7 @@ before_script: - psql --version services: -#- mysql + - mysql - postgres script: From 99c4edcbcc460d3c8a2e5751839f0461da4b978a Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 9 Dec 2015 13:58:58 +0530 Subject: [PATCH 48/66] Update shippable.yml --- shippable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index dff81e0..91ed326 100644 --- a/shippable.yml +++ b/shippable.yml @@ -8,8 +8,8 @@ install: - pip install -r requirements.txt -addons: - postgresql: "9.1" +#addons: + # postgresql: "9.1" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From a44cc79c1cf508bc2ddbc4483700d02a1fd8544c Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 9 Dec 2015 14:47:22 +0530 Subject: [PATCH 49/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 91ed326..28a7406 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,5 +1,5 @@ language: python -build_image: drydock/u14pytpls:prod +#build_image: drydock/u14pytpls:prod python: - 2.7 - 2.6 From b7b63748bbbd63d4cb9d7f50637454a5c788125f Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 10 Dec 2015 16:24:42 +0530 Subject: [PATCH 50/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 28a7406..91ed326 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,5 +1,5 @@ language: python -#build_image: drydock/u14pytpls:prod +build_image: drydock/u14pytpls:prod python: - 2.7 - 2.6 From ce650fafb1beae6a4d8c7beadb0fa57d6175ce6b Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 10 Dec 2015 16:25:15 +0530 Subject: [PATCH 51/66] Update shippable.yml --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index 91ed326..14d471c 100644 --- a/shippable.yml +++ b/shippable.yml @@ -8,8 +8,8 @@ install: - pip install -r requirements.txt -#addons: - # postgresql: "9.1" +addons: + postgresql: "9.1" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: @@ -21,7 +21,7 @@ before_script: - psql --version services: - - mysql + #- mysql - postgres script: From c83679643e4de679c2394094670c535d436d63d0 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 10 Dec 2015 16:28:17 +0530 Subject: [PATCH 52/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 14d471c..a4c95ea 100644 --- a/shippable.yml +++ b/shippable.yml @@ -9,7 +9,7 @@ install: addons: - postgresql: "9.1" + postgresql: "9.3" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From 9e5e8e3d3ab9cf4e0d5753a2f1df7c2e01cd87a6 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 10 Dec 2015 16:31:05 +0530 Subject: [PATCH 53/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index a4c95ea..f7dbd0a 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,5 +1,5 @@ language: python -build_image: drydock/u14pytpls:prod +#build_image: drydock/u14pytpls:prod python: - 2.7 - 2.6 From 43aeb930e705d37c9fb37ec4bd3b04cf813eaab5 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 10 Dec 2015 16:32:24 +0530 Subject: [PATCH 54/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index f7dbd0a..ddd2b75 100644 --- a/shippable.yml +++ b/shippable.yml @@ -9,7 +9,7 @@ install: addons: - postgresql: "9.3" + postgresql: "9.4" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From e4c64838dbb1e6db04269af0b7213df795604dd6 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 10 Dec 2015 16:34:00 +0530 Subject: [PATCH 55/66] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index ddd2b75..e40bef2 100644 --- a/shippable.yml +++ b/shippable.yml @@ -19,6 +19,7 @@ before_script: - mkdir -p shippable/codecoverage - echo $key1 and $key2 and $FOO - psql --version + - psql -U postgres -c "show SERVER_VERSION" services: #- mysql From 2f3f498bb482b10800a83883a20ef2960c4e5b4a Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 10 Dec 2015 16:42:55 +0530 Subject: [PATCH 56/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index e40bef2..a19fedc 100644 --- a/shippable.yml +++ b/shippable.yml @@ -9,7 +9,7 @@ install: addons: - postgresql: "9.4" + postgresql: "9.2" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From cc86396339c17af94ea678bd944b13c119973f0e Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 10 Dec 2015 16:46:52 +0530 Subject: [PATCH 57/66] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index a19fedc..4ef62a5 100644 --- a/shippable.yml +++ b/shippable.yml @@ -9,7 +9,7 @@ install: addons: - postgresql: "9.2" + postgresql: "9.1" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From f7e2baf0d76258fcda7a498b6f218a24642771b2 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 10 Dec 2015 16:48:31 +0530 Subject: [PATCH 58/66] Update shippable.yml --- shippable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 4ef62a5..af769d0 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,5 +1,5 @@ language: python -#build_image: drydock/u14pytpls:prod +build_image: drydock/u14pytpls:prod python: - 2.7 - 2.6 @@ -9,7 +9,7 @@ install: addons: - postgresql: "9.1" + postgresql: "9.4" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: From 3ab4b1ed6a4cb3a7789c20fdb7abc27cacce99b4 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 10 Dec 2015 16:56:48 +0530 Subject: [PATCH 59/66] Update shippable.yml --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index af769d0..dc6e6ae 100644 --- a/shippable.yml +++ b/shippable.yml @@ -9,7 +9,7 @@ install: addons: - postgresql: "9.4" + postgresql: "9.2" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: @@ -21,9 +21,9 @@ before_script: - psql --version - psql -U postgres -c "show SERVER_VERSION" -services: +#services: #- mysql - - postgres + # - postgres script: - nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml From cd7dc81f9c5e5e09a825ee25c9d763b9efa69599 Mon Sep 17 00:00:00 2001 From: dectenvidya Date: Thu, 10 Dec 2015 17:01:06 +0530 Subject: [PATCH 60/66] Update shippable.yml --- shippable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index dc6e6ae..86e8add 100644 --- a/shippable.yml +++ b/shippable.yml @@ -21,9 +21,9 @@ before_script: - psql --version - psql -U postgres -c "show SERVER_VERSION" -#services: +services: #- mysql - # - postgres + - postgres script: - nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml From 6ce8601881cf37e93cfadc1a7fb7829665dd49ca Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 11 Dec 2015 11:34:35 +0530 Subject: [PATCH 61/66] Update shippable.yml --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index 86e8add..f36c562 100644 --- a/shippable.yml +++ b/shippable.yml @@ -8,8 +8,8 @@ install: - pip install -r requirements.txt -addons: - postgresql: "9.2" +#addons: + # postgresql: "9.2" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it before_script: @@ -23,7 +23,7 @@ before_script: services: #- mysql - - postgres + - postgresql script: - nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml From 3dbf2834e2cfdb713fab24a80126b4f1f015a2a5 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 11 Dec 2015 11:58:57 +0530 Subject: [PATCH 62/66] Update shippable.yml --- shippable.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index f36c562..3f16683 100644 --- a/shippable.yml +++ b/shippable.yml @@ -23,8 +23,7 @@ before_script: services: #- mysql - - postgresql - + - postgres script: - nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml - which python && coverage run --branch test.py From b9dca37c1a4b1dd379c56a5590e48be1fd36350d Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 21 Jan 2016 12:09:15 +0530 Subject: [PATCH 63/66] Update shippable.yml --- shippable.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 3f16683..ecc8c7e 100644 --- a/shippable.yml +++ b/shippable.yml @@ -3,7 +3,11 @@ build_image: drydock/u14pytpls:prod python: - 2.7 - 2.6 - + - 3.2 + - 3.3 + +before_install: + - if [[ $SHIPPABLE_PYTHON_VERSION == '3.2' ]]; then pip install coverage==3.7.1 codecov ; fi install: - pip install -r requirements.txt From fcacc50389ecdc278b6595eef2fdb7c5dc7d800c Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 21 Jan 2016 12:17:53 +0530 Subject: [PATCH 64/66] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8e0210d..ba44de6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ psycopg2 nose -coverage +#coverage From d6e9931ca0de679448c8261d1251fc1f26f40df2 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 21 Jan 2016 12:23:58 +0530 Subject: [PATCH 65/66] Update requirements.txt --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ba44de6..f461262 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ psycopg2 nose -#coverage From a7468f5b4e38b55979f7263d2e685e2706ccfe6d Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 21 Jan 2016 12:31:40 +0530 Subject: [PATCH 66/66] Update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index f461262..8e0210d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ psycopg2 nose +coverage pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy