diff --git a/README.md b/README.md index 2b2c6c7a..e1264ba4 100755 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Python Sample ===================== Simple Python sample with tests using Nose and Coverage. - +fail test [![Build Status](https://apibeta.shippable.com/projects/5420089b76d0c288e441e5ee/badge?branchName=master)](https://appbeta.shippable.com/projects/5420089b76d0c288e441e5ee/builds/latest) diff --git a/shippable.yml b/shippable.yml index ecec0ba5..1ab9e51c 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,5 @@ language: python - #build_image: shippable/minv2:beta - python: - 2.6 - 2.7 @@ -10,8 +8,6 @@ python: - 3.4 # - pypy - - before_install: - source ~/.rvm/scripts/rvm && rvm use 1.9.2 diff --git a/test.py b/test.py index e090dee3..8f54ebfe 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() != 60) def main():