diff --git a/README.md b/README.md index 2b2c6c7a..f324c3b7 100755 --- a/README.md +++ b/README.md @@ -3,7 +3,5 @@ Python Sample Simple Python sample with tests using Nose and Coverage. - - [![Build Status](https://apibeta.shippable.com/projects/5420089b76d0c288e441e5ee/badge?branchName=master)](https://appbeta.shippable.com/projects/5420089b76d0c288e441e5ee/builds/latest) #test diff --git a/shippable.yml b/shippable.yml index ecec0ba5..2524c21b 100755 --- a/shippable.yml +++ b/shippable.yml @@ -3,20 +3,14 @@ language: python #build_image: shippable/minv2:beta python: - - 2.6 - - 2.7 - 3.2 - - 3.3 - - 3.4 - # - pypy - - before_install: - - source ~/.rvm/scripts/rvm && rvm use 1.9.2 + #- source ~/.rvm/scripts/rvm && rvm use 1.9.2 + - pip install coverage==3.7.1 codecov -install: - - pip install -r requirements.txt +#install: + # - pip install -r requirements.txt # Make folders for the reports before_script: @@ -44,3 +38,4 @@ notifications: #test #cache: true parallelized_test : true +#testing 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():