diff --git a/shippable.yml b/shippable.yml old mode 100755 new mode 100644 index a417519e..d1ad0ae5 --- a/shippable.yml +++ b/shippable.yml @@ -1,28 +1 @@ language: python - -python: - - 2.6 - - 2.7 - - 3.2 - - 3.3 - - 3.4 - - pypy - -install: - - pip install -r requirements.txt - -# Make folders for the reports -before_script: - - mkdir -p shippable/testresults - - mkdir -p shippable/codecoverage - -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 - -notifications: false - -branches: - only: - - master diff --git a/test.py b/test.py index e090dee3..164bfe4e 100755 --- a/test.py +++ b/test.py @@ -8,7 +8,6 @@ def test(self): app.calculate() self.failIf(app.retrieve() != 62) - def main(): unittest.main()