From 944ee004cbac879f7e6598d70cac4c896a34b737 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Wed, 9 Mar 2016 10:48:08 -0800 Subject: [PATCH 01/40] only python 2.7; add test_Var --- shippable.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/shippable.yml b/shippable.yml index 34e81b8e..1caeb483 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,13 +1,12 @@ language: python python: - - 2.6 - 2.7 - - 3.2 - - 3.3 - - 3.4 - - pypy - + +env: + global: + - TEST_VAR=reallyAwesomeString + install: - pip install -r requirements.txt From c7feb8053f3564bb115acfceb30a71fcec275ae7 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Fri, 1 Apr 2016 11:09:45 -0700 Subject: [PATCH 02/40] new yml --- shippable.yml | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/shippable.yml b/shippable.yml index 1caeb483..9eddfb1e 100755 --- a/shippable.yml +++ b/shippable.yml @@ -7,19 +7,11 @@ env: global: - TEST_VAR=reallyAwesomeString -install: - - pip install -r requirements.txt - -# Make folders for the reports -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 - - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py - -notifications: - email: - - exampleone@org.com +build: + ci: + - pip install -r requirements.txt + - mkdir -p shippable/testresults + - mkdir -p shippable/codecoverage + - 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 From d633bc8d43f93fb9e565c6b03061a51cb8eb4ac4 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Fri, 1 Apr 2016 11:17:01 -0700 Subject: [PATCH 03/40] add docker integration --- shippable.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/shippable.yml b/shippable.yml index 9eddfb1e..0ca8a8e7 100755 --- a/shippable.yml +++ b/shippable.yml @@ -8,6 +8,11 @@ env: - TEST_VAR=reallyAwesomeString build: + # pre_ci_boot: + # image_name: manishas/myImage + # image_tag: latest + # pull: true + # options: "-e HOME=/root" ci: - pip install -r requirements.txt - mkdir -p shippable/testresults @@ -15,3 +20,8 @@ build: - 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 + +integrations: + hub: + - integrationName: stephDocker + - type: docker From 8a0f2aac7dad8d03eb1182d5d6b554e004e1a981 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Fri, 1 Apr 2016 11:18:15 -0700 Subject: [PATCH 04/40] remove dash --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 0ca8a8e7..b8f03180 100755 --- a/shippable.yml +++ b/shippable.yml @@ -24,4 +24,4 @@ build: integrations: hub: - integrationName: stephDocker - - type: docker + type: docker From 94d75170bc15274c41505b24d6d01c95f93fd955 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Mon, 27 Jun 2016 10:22:53 -0700 Subject: [PATCH 05/40] check node version --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index b8f03180..2e03c037 100755 --- a/shippable.yml +++ b/shippable.yml @@ -14,6 +14,7 @@ build: # pull: true # options: "-e HOME=/root" ci: + - node --version - pip install -r requirements.txt - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From b374fdd4935d3970ba2b8d319cf1c8478d8f04ff Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Mon, 27 Jun 2016 10:25:30 -0700 Subject: [PATCH 06/40] check npm version --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 2e03c037..baaa09e0 100755 --- a/shippable.yml +++ b/shippable.yml @@ -15,6 +15,7 @@ build: # options: "-e HOME=/root" ci: - node --version + - npm --version - pip install -r requirements.txt - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From 32de0f2117027760c33901df4de22faba51a08a7 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Mon, 27 Jun 2016 10:29:49 -0700 Subject: [PATCH 07/40] nvm ls --- shippable.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shippable.yml b/shippable.yml index baaa09e0..0b773f02 100755 --- a/shippable.yml +++ b/shippable.yml @@ -15,6 +15,9 @@ build: # options: "-e HOME=/root" ci: - node --version + - nvm ls + - npm --version + - npm update - npm --version - pip install -r requirements.txt - mkdir -p shippable/testresults From 79143ebdd31fc24046a565e6f649edcf2427bf5d Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Mon, 27 Jun 2016 10:33:13 -0700 Subject: [PATCH 08/40] source nvm --- shippable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 0b773f02..f7e8c2a9 100755 --- a/shippable.yml +++ b/shippable.yml @@ -15,7 +15,8 @@ build: # options: "-e HOME=/root" ci: - node --version - - nvm ls + - echo "source ~/.nvm/nvm.sh" >> $HOME/.bashrc + - nvm --help - npm --version - npm update - npm --version From 0ecc125c8b48d28d34f88ef140c45a397ba19116 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Mon, 27 Jun 2016 10:35:33 -0700 Subject: [PATCH 09/40] look for nvm --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index f7e8c2a9..b4edd011 100755 --- a/shippable.yml +++ b/shippable.yml @@ -16,6 +16,7 @@ build: ci: - node --version - echo "source ~/.nvm/nvm.sh" >> $HOME/.bashrc + - ls -la ~/ | grep nvm - nvm --help - npm --version - npm update From b0e77c5411371a34bddaa14b6fd03b4f82d43c91 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Mon, 27 Jun 2016 10:37:20 -0700 Subject: [PATCH 10/40] look for bashrc --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index b4edd011..fc0711ab 100755 --- a/shippable.yml +++ b/shippable.yml @@ -15,6 +15,7 @@ build: # options: "-e HOME=/root" ci: - node --version + - ls -la ~/ | grep bash - echo "source ~/.nvm/nvm.sh" >> $HOME/.bashrc - ls -la ~/ | grep nvm - nvm --help From 76ee3af8c2291c1b7e3aa04a7e9baf3806ff0939 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Mon, 27 Jun 2016 10:38:04 -0700 Subject: [PATCH 11/40] change bashrc path --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index fc0711ab..cf4ae4ef 100755 --- a/shippable.yml +++ b/shippable.yml @@ -16,7 +16,7 @@ build: ci: - node --version - ls -la ~/ | grep bash - - echo "source ~/.nvm/nvm.sh" >> $HOME/.bashrc + - echo "source ~/.nvm/nvm.sh" >> ~/.bashrc - ls -la ~/ | grep nvm - nvm --help - npm --version From 2db0522c0cf0c75a4c54cceb9cbe183fefdbfb5e Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Sun, 7 Aug 2016 18:08:21 -0700 Subject: [PATCH 12/40] Update shippable.yml --- shippable.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/shippable.yml b/shippable.yml index cf4ae4ef..26882f83 100755 --- a/shippable.yml +++ b/shippable.yml @@ -14,14 +14,14 @@ build: # pull: true # options: "-e HOME=/root" ci: - - node --version - - ls -la ~/ | grep bash - - echo "source ~/.nvm/nvm.sh" >> ~/.bashrc - - ls -la ~/ | grep nvm - - nvm --help - - npm --version - - npm update - - npm --version + # - node --version + # - ls -la ~/ | grep bash + # - echo "source ~/.nvm/nvm.sh" >> ~/.bashrc + # - ls -la ~/ | grep nvm + # - nvm --help + # - npm --version + # - npm update + # - npm --version - pip install -r requirements.txt - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From d145a0909f4944f26ab302f14275a74075f4eddf Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 6 Sep 2016 14:16:01 -0700 Subject: [PATCH 13/40] Update shippable.yml --- shippable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shippable.yml b/shippable.yml index 26882f83..6afe9a64 100755 --- a/shippable.yml +++ b/shippable.yml @@ -29,7 +29,7 @@ build: - which python && coverage run --branch test.py - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py -integrations: - hub: - - integrationName: stephDocker - type: docker +# integrations: +# hub: +# - integrationName: stephDocker +# type: docker From 5890254bdba5c8d4852e4edf4e3a76326e37d81e Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 20 Sep 2016 17:18:02 -0700 Subject: [PATCH 14/40] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 8f817b75..f30d89c0 100755 --- a/README.md +++ b/README.md @@ -5,3 +5,7 @@ Simple Python sample with tests using Nose and Coverage. This sample is built for Shippable, a docker based continuous integration and deployment platform. change 1 in testing branch + + [![Run Status](https://api.shippable.com/projects/558b1fbaedd7f2c05238735d/badge?branch=noMatrix)](https://app.shippable.com/projects/558b1fbaedd7f2c05238735d) + + [![Coverage Badge](https://api.shippable.com/projects/558b1fbaedd7f2c05238735d/coverageBadge?branch=noMatrix)](https://app.shippable.com/projects/558b1fbaedd7f2c05238735d) From bd299d0d3149032d519017a07a512a8ee70ceddc Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 20 Sep 2016 17:30:08 -0700 Subject: [PATCH 15/40] Update app.py --- app.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app.py b/app.py index b3cf7d91..71959c1c 100644 --- a/app.py +++ b/app.py @@ -7,6 +7,9 @@ def calculate(self): def retrieve(self): return self.result + + def notcalled(self): + return 1 if __name__ == "__main__": app = App() From 27e2a011c26c6fae991a2831ff04de93f3027970 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 20 Sep 2016 17:33:59 -0700 Subject: [PATCH 16/40] Update app.py --- app.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app.py b/app.py index 71959c1c..d6b25e3d 100644 --- a/app.py +++ b/app.py @@ -3,6 +3,8 @@ def __init__(self): self.var1 = 15 def calculate(self): + if self.var1 < 10: + print('foo') self.result = self.var1 * 4 + 2 def retrieve(self): @@ -11,6 +13,9 @@ def retrieve(self): def notcalled(self): return 1 + def anothernotcalled(self): + return 2 + if __name__ == "__main__": app = App() app.calculate() From 090ef154867e0a855da5ef99625254c5286028d1 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 20 Sep 2016 17:35:22 -0700 Subject: [PATCH 17/40] Update test.py --- test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test.py b/test.py index e090dee3..d5ea5113 100755 --- a/test.py +++ b/test.py @@ -3,10 +3,10 @@ class TestSuite(unittest.TestCase): - def test(self): - app = App() - app.calculate() - self.failIf(app.retrieve() != 62) + # def test(self): + # app = App() + # app.calculate() + # self.failIf(app.retrieve() != 62) def main(): From 37b2ac35355335271ddc5555e7bb9deda3138790 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 20 Sep 2016 17:42:06 -0700 Subject: [PATCH 18/40] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index f30d89c0..ae484e6a 100755 --- a/README.md +++ b/README.md @@ -9,3 +9,8 @@ change 1 in testing branch [![Run Status](https://api.shippable.com/projects/558b1fbaedd7f2c05238735d/badge?branch=noMatrix)](https://app.shippable.com/projects/558b1fbaedd7f2c05238735d) [![Coverage Badge](https://api.shippable.com/projects/558b1fbaedd7f2c05238735d/coverageBadge?branch=noMatrix)](https://app.shippable.com/projects/558b1fbaedd7f2c05238735d) + + +beta: + [![Run Status](https://apibeta.shippable.com/projects/564e6fb2d78fc6fc59652b5e/badge?branch=noMatrix)](https://beta.shippable.com/projects/564e6fb2d78fc6fc59652b5e) + [![Coverage Badge](https://apibeta.shippable.com/projects/564e6fb2d78fc6fc59652b5e/coverageBadge?branch=noMatrix)](https://beta.shippable.com/projects/564e6fb2d78fc6fc59652b5e) From 482dfb02634e52cb024f85630cad6132c7920365 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 20 Sep 2016 17:46:56 -0700 Subject: [PATCH 19/40] Update test.py --- test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test.py b/test.py index d5ea5113..e090dee3 100755 --- a/test.py +++ b/test.py @@ -3,10 +3,10 @@ class TestSuite(unittest.TestCase): - # def test(self): - # app = App() - # app.calculate() - # self.failIf(app.retrieve() != 62) + def test(self): + app = App() + app.calculate() + self.failIf(app.retrieve() != 62) def main(): From 922207bb29d089a183da5ad6f6dbc2f5261ba4a1 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Wed, 21 Sep 2016 10:04:17 -0700 Subject: [PATCH 20/40] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index ae484e6a..5da9c2e3 100755 --- a/README.md +++ b/README.md @@ -14,3 +14,8 @@ change 1 in testing branch beta: [![Run Status](https://apibeta.shippable.com/projects/564e6fb2d78fc6fc59652b5e/badge?branch=noMatrix)](https://beta.shippable.com/projects/564e6fb2d78fc6fc59652b5e) [![Coverage Badge](https://apibeta.shippable.com/projects/564e6fb2d78fc6fc59652b5e/coverageBadge?branch=noMatrix)](https://beta.shippable.com/projects/564e6fb2d78fc6fc59652b5e) + +beta2: + [![Run Status](https://api.qhode.com/projects/57d1e17c5aae6c100052a705/badge?branch=noMatrix)](https://qhode.com/projects/57d1e17c5aae6c100052a705) + + [![Coverage Badge](https://api.qhode.com/projects/57d1e17c5aae6c100052a705/coverageBadge?branch=noMatrix)](https://qhode.com/projects/57d1e17c5aae6c100052a705) From 43dc11c1ec5a6a269391908cc821eea63cba3290 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Wed, 21 Sep 2016 11:13:14 -0700 Subject: [PATCH 21/40] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5da9c2e3..4c2455d6 100755 --- a/README.md +++ b/README.md @@ -19,3 +19,9 @@ beta2: [![Run Status](https://api.qhode.com/projects/57d1e17c5aae6c100052a705/badge?branch=noMatrix)](https://qhode.com/projects/57d1e17c5aae6c100052a705) [![Coverage Badge](https://api.qhode.com/projects/57d1e17c5aae6c100052a705/coverageBadge?branch=noMatrix)](https://qhode.com/projects/57d1e17c5aae6c100052a705) + +local: + +[![Run Status](http://172.17.42.1:50000/projects/57e2ccdda2052818009345e9/badge?branch=noMatrix)](http://localhost:50001/projects/57e2ccdda2052818009345e9) + +[![Coverage Badge](http://172.17.42.1:50000/projects/57e2ccdda2052818009345e9/coverageBadge?branch=noMatrix)](http://localhost:50001/projects/57e2ccdda2052818009345e9) From 7f783693c584802256296e5ea5507d78884262e7 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Wed, 21 Sep 2016 11:14:13 -0700 Subject: [PATCH 22/40] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4c2455d6..16a61b5f 100755 --- a/README.md +++ b/README.md @@ -22,6 +22,6 @@ beta2: local: -[![Run Status](http://172.17.42.1:50000/projects/57e2ccdda2052818009345e9/badge?branch=noMatrix)](http://localhost:50001/projects/57e2ccdda2052818009345e9) +[![Run Status](http://50befe32.ngrok.io/projects/57e2ccdda2052818009345e9/badge?branch=noMatrix)](http://localhost:50001/projects/57e2ccdda2052818009345e9) -[![Coverage Badge](http://172.17.42.1:50000/projects/57e2ccdda2052818009345e9/coverageBadge?branch=noMatrix)](http://localhost:50001/projects/57e2ccdda2052818009345e9) +[![Coverage Badge](http://50befe32.ngrok.io/projects/57e2ccdda2052818009345e9/coverageBadge?branch=noMatrix)](http://localhost:50001/projects/57e2ccdda2052818009345e9) From d41b8d8d117002dc2130631e491ee19a5580ae4a Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Mon, 23 Jan 2017 12:24:55 -0800 Subject: [PATCH 23/40] !@#$%^&*()-_=+.>"':;`~, Date: Mon, 23 Jan 2017 13:14:18 -0800 Subject: [PATCH 24/40] !@#$%^&*()-_=+.>"':;`~, Date: Wed, 25 Jan 2017 11:03:20 -0800 Subject: [PATCH 25/40] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 6afe9a64..101a6469 100755 --- a/shippable.yml +++ b/shippable.yml @@ -33,3 +33,4 @@ build: # hub: # - integrationName: stephDocker # type: docker + From 314effb74ab04776757a51e6bf0afaf297e7b939 Mon Sep 17 00:00:00 2001 From: stephanielingwood Date: Wed, 8 Feb 2017 11:13:59 -0800 Subject: [PATCH 26/40] \\"Error (yo)\\" --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 101a6469..5f21aa77 100755 --- a/shippable.yml +++ b/shippable.yml @@ -34,3 +34,4 @@ build: # - integrationName: stephDocker # type: docker + From 01216d9e1a24dbd9069a337a90f6763d5f533174 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Mon, 20 Feb 2017 17:01:28 -0800 Subject: [PATCH 27/40] Update shippable.yml --- shippable.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 5f21aa77..101a6469 100755 --- a/shippable.yml +++ b/shippable.yml @@ -34,4 +34,3 @@ build: # - integrationName: stephDocker # type: docker - From b8fc6320a92e45f56ed7f895bc0a526d8f6f9a54 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 21 Feb 2017 10:27:22 -0800 Subject: [PATCH 28/40] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 101a6469..6708fc90 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,7 @@ language: python python: - - 2.7 + - 2.7.6 env: global: From 17ed0e47ff369baed84a1cad64c7ef39a6207613 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 21 Feb 2017 10:30:13 -0800 Subject: [PATCH 29/40] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 6708fc90..101a6469 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,7 @@ language: python python: - - 2.7.6 + - 2.7 env: global: From 8a794a4e7ab769de77ae757cabca36c74d1c8a0a Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 21 Feb 2017 10:35:06 -0800 Subject: [PATCH 30/40] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 101a6469..6708fc90 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,7 @@ language: python python: - - 2.7 + - 2.7.6 env: global: From aab3dcf571f69a77466b2767857e419a0274dd30 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Tue, 21 Feb 2017 12:26:24 -0800 Subject: [PATCH 31/40] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 6708fc90..101a6469 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,7 @@ language: python python: - - 2.7.6 + - 2.7 env: global: From f6f32f68a1178ae090a59fac27dfe08db30dca79 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Thu, 23 Feb 2017 12:00:21 -0800 Subject: [PATCH 32/40] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 101a6469..4de55db5 100755 --- a/shippable.yml +++ b/shippable.yml @@ -22,6 +22,7 @@ build: # - npm --version # - npm update # - npm --version + - cd doesNotExist - pip install -r requirements.txt - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From 6a7a1662b6410464d36ee34d0150a9694a4d15c7 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Fri, 24 Feb 2017 09:50:02 -0800 Subject: [PATCH 33/40] Update shippable.yml --- shippable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 4de55db5..4a5371fb 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,7 @@ language: python python: - - 2.7 + - 3.5 env: global: @@ -22,7 +22,7 @@ build: # - npm --version # - npm update # - npm --version - - cd doesNotExist + - pip install python-coveralls - pip install -r requirements.txt - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From 5fc1f8622cd4ea82750602f4e92ee5a1b5a16670 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Fri, 24 Feb 2017 10:06:18 -0800 Subject: [PATCH 34/40] Update shippable.yml --- shippable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 4a5371fb..72b677c5 100755 --- a/shippable.yml +++ b/shippable.yml @@ -22,13 +22,14 @@ build: # - npm --version # - npm update # - npm --version - - pip install python-coveralls - pip install -r requirements.txt - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage - 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 + on_success: + - pip install python-coveralls # integrations: # hub: From a621124ecb9862def4f962ba381dce0527fc46b9 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Fri, 24 Feb 2017 10:54:55 -0800 Subject: [PATCH 35/40] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index 72b677c5..c833de1a 100755 --- a/shippable.yml +++ b/shippable.yml @@ -22,6 +22,7 @@ build: # - npm --version # - npm update # - npm --version + - pip install --disable-pip-version-check --upgrade pip - pip install -r requirements.txt - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage @@ -30,6 +31,7 @@ build: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py on_success: - pip install python-coveralls + # integrations: # hub: From 5a88ad21a7d0676034e739df13154be913e43bb9 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Fri, 24 Feb 2017 10:58:28 -0800 Subject: [PATCH 36/40] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index c833de1a..3e5e8eef 100755 --- a/shippable.yml +++ b/shippable.yml @@ -23,6 +23,7 @@ build: # - npm update # - npm --version - pip install --disable-pip-version-check --upgrade pip + - pip install --upgrade wheel - pip install -r requirements.txt - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage From 4becae230ea7d6c99f2ad6d3946bc3d1a4ea6085 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Fri, 24 Feb 2017 13:55:15 -0800 Subject: [PATCH 37/40] Update shippable.yml --- shippable.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/shippable.yml b/shippable.yml index 3e5e8eef..c0c67ebd 100755 --- a/shippable.yml +++ b/shippable.yml @@ -32,10 +32,11 @@ build: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py on_success: - pip install python-coveralls + - docker login -# integrations: -# hub: -# - integrationName: stephDocker -# type: docker + integrations: + hub: + - integrationName: stephDocker + type: docker From ff67bad5c22f28f0e050233dd1bdbbcba6fa5a51 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Fri, 24 Feb 2017 13:56:22 -0800 Subject: [PATCH 38/40] Update shippable.yml --- shippable.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/shippable.yml b/shippable.yml index c0c67ebd..c8283f30 100755 --- a/shippable.yml +++ b/shippable.yml @@ -34,9 +34,8 @@ build: - pip install python-coveralls - docker login - - integrations: - hub: - - integrationName: stephDocker - type: docker +integrations: + hub: + - integrationName: stephDocker + type: docker From 78e9c811faebce62656a03a2d417aadaf3f084a3 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Thu, 23 Mar 2017 15:12:56 -0700 Subject: [PATCH 39/40] remove docker login --- shippable.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/shippable.yml b/shippable.yml index c8283f30..2c4c2d29 100755 --- a/shippable.yml +++ b/shippable.yml @@ -14,14 +14,6 @@ build: # pull: true # options: "-e HOME=/root" ci: - # - node --version - # - ls -la ~/ | grep bash - # - echo "source ~/.nvm/nvm.sh" >> ~/.bashrc - # - ls -la ~/ | grep nvm - # - nvm --help - # - npm --version - # - npm update - # - npm --version - pip install --disable-pip-version-check --upgrade pip - pip install --upgrade wheel - pip install -r requirements.txt @@ -32,10 +24,3 @@ build: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py on_success: - pip install python-coveralls - - docker login - -integrations: - hub: - - integrationName: stephDocker - type: docker - From 56c8e2e32aaab6d5db0d9b51c9f6a22053664303 Mon Sep 17 00:00:00 2001 From: Stephanie Lingwood Date: Wed, 29 Mar 2017 09:30:17 -0700 Subject: [PATCH 40/40] Update shippable.yml --- shippable.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/shippable.yml b/shippable.yml index 2c4c2d29..54d62cfe 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,11 +1,15 @@ language: python -python: - - 3.5 +#python: +# - 3.5 -env: - global: - - TEST_VAR=reallyAwesomeString +#env: +# global: +# - TEST_VAR=reallyAwesomeString + +matrix: + include: + - python: 3.5 build: # pre_ci_boot: