From c783c15a9a9cf0834ebd51177474b507d2d64fe3 Mon Sep 17 00:00:00 2001 From: ric03uecS Date: Tue, 23 Sep 2014 16:23:45 +0530 Subject: [PATCH 01/10] Update shippable.yml --- shippable.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/shippable.yml b/shippable.yml index c8f53ded..46d90b88 100755 --- a/shippable.yml +++ b/shippable.yml @@ -2,11 +2,11 @@ language: python python: - 2.6 - - 2.7 - - 3.2 - - 3.3 - - 3.4 - - pypy +# - 2.7 +# - 3.2 +# - 3.3 +# - 3.4 +# - pypy install: - pip install -r requirements.txt @@ -24,4 +24,4 @@ script: notifications: email: - - exampleone@org.com + - devashish+notify1@shippable.com From bda2d1dcf072155be42529c0be426fdfadf171c7 Mon Sep 17 00:00:00 2001 From: ric03uecS Date: Tue, 23 Sep 2014 16:28:25 +0530 Subject: [PATCH 02/10] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 46d90b88..ad4d57f7 100755 --- a/shippable.yml +++ b/shippable.yml @@ -13,6 +13,7 @@ install: # Make folders for the reports before_script: + - invalidcommandthatshouldfail - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From eb3d7ebdf081aa4ebbf4c5cfd7cb7fb68f287764 Mon Sep 17 00:00:00 2001 From: ric03uecS Date: Tue, 23 Sep 2014 16:43:39 +0530 Subject: [PATCH 03/10] Update shippable.yml --- shippable.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index ad4d57f7..46d90b88 100755 --- a/shippable.yml +++ b/shippable.yml @@ -13,7 +13,6 @@ install: # Make folders for the reports before_script: - - invalidcommandthatshouldfail - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From a4e0a4cc0ba62bb6f709c75c5d29729e3d13e920 Mon Sep 17 00:00:00 2001 From: ric03uecS Date: Tue, 23 Sep 2014 20:03:18 +0530 Subject: [PATCH 04/10] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 0f675189..b77c14b4 100755 --- a/README.md +++ b/README.md @@ -3,4 +3,7 @@ Python Sample Simple Python sample with tests using Nose and Coverage. + +adding some info + This sample is built for Shippable, a docker based continuous integration and deployment platform. From 23f0aa7fdb61af609cec21f95373aa786b8d94e6 Mon Sep 17 00:00:00 2001 From: ric03uecS Date: Tue, 23 Sep 2014 20:14:54 +0530 Subject: [PATCH 05/10] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 46d90b88..d29d836b 100755 --- a/shippable.yml +++ b/shippable.yml @@ -22,6 +22,7 @@ script: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py + notifications: email: - devashish+notify1@shippable.com From 9851e0d1bd98e5e360251c7d8abce397c374b63b Mon Sep 17 00:00:00 2001 From: ric03uecS Date: Wed, 24 Sep 2014 11:10:16 +0530 Subject: [PATCH 06/10] Update shippable.yml --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index d29d836b..dbbcdb6d 100755 --- a/shippable.yml +++ b/shippable.yml @@ -2,8 +2,8 @@ language: python python: - 2.6 -# - 2.7 -# - 3.2 + - 2.7 + - 3.2 # - 3.3 # - 3.4 # - pypy @@ -25,4 +25,4 @@ script: notifications: email: - - devashish+notify1@shippable.com + From 0e0722833e981cf1931ffd617df0efd4facec8a7 Mon Sep 17 00:00:00 2001 From: ric03uecS Date: Wed, 24 Sep 2014 11:24:50 +0530 Subject: [PATCH 07/10] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index dbbcdb6d..2f1bfa0f 100755 --- a/shippable.yml +++ b/shippable.yml @@ -9,6 +9,7 @@ python: # - pypy install: + - if [ $TRAVIS_PYTHON_VERSION == "2.7" ]; then executeinvalidcommand ; fi - pip install -r requirements.txt # Make folders for the reports From 19b8ec908aa5fb4106e913755262f73f3483a8e3 Mon Sep 17 00:00:00 2001 From: ric03uecS Date: Wed, 24 Sep 2014 12:49:02 +0530 Subject: [PATCH 08/10] Update shippable.yml --- shippable.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/shippable.yml b/shippable.yml index 2f1bfa0f..074bd32e 100755 --- a/shippable.yml +++ b/shippable.yml @@ -21,9 +21,3 @@ 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 - - - -notifications: - email: - From bbbb459b4d850f552a276abbb4c016f00fd88c44 Mon Sep 17 00:00:00 2001 From: ric03uecS Date: Wed, 24 Sep 2014 13:16:44 +0530 Subject: [PATCH 09/10] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 074bd32e..a62d5bb3 100755 --- a/shippable.yml +++ b/shippable.yml @@ -10,6 +10,7 @@ python: install: - if [ $TRAVIS_PYTHON_VERSION == "2.7" ]; then executeinvalidcommand ; fi + - executeinvalidcommand - pip install -r requirements.txt # Make folders for the reports From 4a843dc58d37d55cf787d443e3649a2d42f2facb Mon Sep 17 00:00:00 2001 From: ric03uecS Date: Wed, 24 Sep 2014 13:47:08 +0530 Subject: [PATCH 10/10] Update shippable.yml --- shippable.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index a62d5bb3..074bd32e 100755 --- a/shippable.yml +++ b/shippable.yml @@ -10,7 +10,6 @@ python: install: - if [ $TRAVIS_PYTHON_VERSION == "2.7" ]; then executeinvalidcommand ; fi - - executeinvalidcommand - pip install -r requirements.txt # Make folders for the reports