diff --git a/README.md b/README.md index ec522d27..2ab04e8b 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ Python Sample ===================== - +test Simple Python sample with tests using Nose and Coverage. + +This sample is built for Shippable, a docker based continuous integration and deployment platform. +[![Build Status](https://apibeta.shippable.com/projects/54192a7576d0c288e441cf12/badge?branchName=master)](https://appbeta.shippable.com/projects/54192a7576d0c288e441cf12/builds/latest) diff --git a/shippable.yml b/shippable.yml index 3bdcdf82..19acb9d2 100755 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,12 @@ language: python python: - - 2.7 + #- 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 + - echo $foo + - cat ~/.gitconfig + +archive: true 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():