From e1b3b7a0adaf4d2e98eefb50b6ee9f305fb6efd4 Mon Sep 17 00:00:00 2001 From: Vidya Raghavan Date: Tue, 1 Jul 2014 11:45:58 +0530 Subject: [PATCH 01/17] 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/17] 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/17] 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 087c930c418ea0aa9410a48ac5cf594ebf89efd1 Mon Sep 17 00:00:00 2001 From: Brent O'Connor Date: Thu, 25 Jun 2015 10:15:14 -0500 Subject: [PATCH 04/17] Fixed tests getting run twice Currently tests are getting run twice, when they only need to be run once. I also added .coveragerc file to control coverage settings. --- .coveragerc | 9 +++++++++ .gitignore | 2 ++ shippable.yml | 8 ++++---- 3 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 .coveragerc create mode 100644 .gitignore diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 00000000..34a1bebf --- /dev/null +++ b/.coveragerc @@ -0,0 +1,9 @@ +# .coveragerc to control coverage + +[run] +branch = True + +source = . + +[html] +directory = htmlcov diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..89437a9d --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.coverage +shippable/ diff --git a/shippable.yml b/shippable.yml index eda56114..64c88347 100755 --- a/shippable.yml +++ b/shippable.yml @@ -7,7 +7,7 @@ python: - 3.3 - 3.4 - pypy - + install: - pip install -r requirements.txt @@ -17,9 +17,9 @@ before_script: - mkdir -p shippable/codecoverage 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 + - which python + - coverage run `which nosetests` test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml + - coverage xml -o shippable/codecoverage/coverage.xml notifications: email: From 563542ba00493ae06537121b907f8137661e853e Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Tue, 15 Dec 2015 13:57:22 +0530 Subject: [PATCH 05/17] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 64c88347..60a3c986 100755 --- a/shippable.yml +++ b/shippable.yml @@ -23,4 +23,4 @@ script: notifications: email: - - exampleone@org.com + - revathi@shippable.com From f8ed297fb868a4365d939e35367208f00810f347 Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Wed, 16 Dec 2015 17:17:49 +0530 Subject: [PATCH 06/17] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 60a3c986..bc35a9db 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,5 +1,5 @@ language: python -build_image: shippableimages/ubuntu1204_python +#build_image: shippableimages/ubuntu1204_python python: - 2.6 - 2.7 From 070ce9635887e39718ebd44cca0f24270dab9691 Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Wed, 16 Dec 2015 17:26:02 +0530 Subject: [PATCH 07/17] Update shippable.yml --- shippable.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shippable.yml b/shippable.yml index bc35a9db..c1b586b3 100755 --- a/shippable.yml +++ b/shippable.yml @@ -3,9 +3,12 @@ language: python python: - 2.6 - 2.7 + - 2.8 - 3.2 - 3.3 - 3.4 + - 3.5 + - pypy3 - pypy install: From 07bd51bd0aacc9aa44a5edadbdfe53559e2df667 Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Wed, 16 Dec 2015 17:43:07 +0530 Subject: [PATCH 08/17] Update shippable.yml --- shippable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index c1b586b3..67c2167e 100755 --- a/shippable.yml +++ b/shippable.yml @@ -12,7 +12,8 @@ python: - pypy install: - - pip install -r requirements.txt + #- pip install -r requirements.txt + - if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install coverage==3.7.1 codecov ; fi # Make folders for the reports before_script: From 9ed072e95afeb2022d14e4741ab80203b839331f Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Fri, 18 Dec 2015 10:33:31 +0530 Subject: [PATCH 09/17] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index 67c2167e..f1e2fb8f 100755 --- a/shippable.yml +++ b/shippable.yml @@ -28,3 +28,5 @@ script: notifications: email: - revathi@shippable.com + + irc: "chat.freenode.net#test-irc" From b841cd20bd27e5eea00bdfe39998b57f14eaff80 Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Wed, 6 Jan 2016 10:58:12 +0530 Subject: [PATCH 10/17] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index f1e2fb8f..5378c45e 100755 --- a/shippable.yml +++ b/shippable.yml @@ -30,3 +30,5 @@ notifications: - revathi@shippable.com irc: "chat.freenode.net#test-irc" + + From c1766bdd5dcba552424c65c3fd5003ec02fe217e Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Wed, 6 Jan 2016 11:23:53 +0530 Subject: [PATCH 11/17] Update shippable.yml --- shippable.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/shippable.yml b/shippable.yml index 5378c45e..cf9f6163 100755 --- a/shippable.yml +++ b/shippable.yml @@ -4,12 +4,16 @@ python: - 2.6 - 2.7 - 2.8 - - 3.2 - - 3.3 - - 3.4 - - 3.5 - - pypy3 - - pypy + #- 3.2 + #- 3.3 + #- 3.4 + #- 3.5 + #- pypy3 + #- pypy +env: + - FOO=foo + - BAR=bar + - TEST=test install: #- pip install -r requirements.txt From bcd1958709a5644f1e7dbb8016ba441249b68589 Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Wed, 6 Jan 2016 11:34:52 +0530 Subject: [PATCH 12/17] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index cf9f6163..540e4867 100755 --- a/shippable.yml +++ b/shippable.yml @@ -3,7 +3,7 @@ language: python python: - 2.6 - 2.7 - - 2.8 + #- 2.8 #- 3.2 #- 3.3 #- 3.4 From ca295935709fe6acd753360c027e80bc08b95812 Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Wed, 6 Jan 2016 11:41:41 +0530 Subject: [PATCH 13/17] Update shippable.yml --- shippable.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/shippable.yml b/shippable.yml index 540e4867..63784c9e 100755 --- a/shippable.yml +++ b/shippable.yml @@ -3,17 +3,17 @@ language: python python: - 2.6 - 2.7 - #- 2.8 - #- 3.2 - #- 3.3 - #- 3.4 - #- 3.5 - #- pypy3 - #- pypy -env: - - FOO=foo - - BAR=bar - - TEST=test + - 2.8 + - 3.2 + - 3.3 + - 3.4 + - 3.5 + - pypy3 + - pypy +#env: + #- FOO=foo + #- BAR=bar + #- TEST=test install: #- pip install -r requirements.txt From c114af73f37ff6950b6ef18a8aade2e5284f1051 Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Wed, 13 Jan 2016 10:57:25 +0530 Subject: [PATCH 14/17] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 63784c9e..54534e2a 100755 --- a/shippable.yml +++ b/shippable.yml @@ -36,3 +36,4 @@ notifications: irc: "chat.freenode.net#test-irc" + From 0318582e1c5caed06eba3092fbf1bc88697c1a26 Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Wed, 13 Jan 2016 11:11:11 +0530 Subject: [PATCH 15/17] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 54534e2a..4e01dff0 100755 --- a/shippable.yml +++ b/shippable.yml @@ -37,3 +37,4 @@ notifications: + From 574045c77717be1db888b0443a31a03c92435229 Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Wed, 20 Jan 2016 18:01:42 +0530 Subject: [PATCH 16/17] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index 4e01dff0..9a4acee1 100755 --- a/shippable.yml +++ b/shippable.yml @@ -38,3 +38,5 @@ notifications: + + From df0fbdecde7b118d97db96e2bb7e544d12ca4d19 Mon Sep 17 00:00:00 2001 From: RevathiRD Date: Thu, 21 Jan 2016 10:39:08 +0530 Subject: [PATCH 17/17] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index 9a4acee1..a4419d84 100755 --- a/shippable.yml +++ b/shippable.yml @@ -40,3 +40,5 @@ notifications: + +