diff --git a/shippable.yml b/shippable.yml index dda0477..2986779 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,5 +1,7 @@ language: python + + python: - 2.7 - 2.6 @@ -20,7 +22,6 @@ before_script: archive: true script: true - #cache: true after_script: - cp README.md ./shippable @@ -29,6 +30,6 @@ after_script: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py branches: - only: - - master + except: + - a-test-pr #build_image: shippable/minv2:beta diff --git a/test.py b/test.py index da5fb51..be8f5e4 100644 --- a/test.py +++ b/test.py @@ -8,7 +8,7 @@ def test(self): couch = Couch() couch.populate() things = couch.count() - self.failIf(things != 5) + self.failIf(things != 6) def main():