diff --git a/shippable.yml b/shippable.yml deleted file mode 100644 index 6735a1b..0000000 --- a/shippable.yml +++ /dev/null @@ -1,27 +0,0 @@ -language: python - -python: - - 2.7 - - pypy - -matrix: - allow_failures: - - python: pypy - -# Mongo binds to 127.0.0.1 by default -services: - - mongodb - -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 -