diff --git a/.travis.yml b/.travis.yml index 199f00c8..ddeafeb3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: python python: -#- 2.6 - - 2.7 - - 3.2 + - 2.6 + #- 2.7 + #- 3.2 #- 3.3 # - 3.4 #- pypy @@ -21,6 +21,7 @@ script: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py after_success: - - git push git@heroku.com:test-python-sample.git $BRANCH + - echo "testing" + #- git push git@heroku.com:test-python-sample.git $BRANCH parallelized_test : true diff --git a/test.py b/test.py index 89d6d59f..e090dee3 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() != 61) + self.failIf(app.retrieve() != 62) def main():