Skip to content

Instantly share code, notes, and snippets.

@ivajloip
Created February 18, 2016 10:42
Show Gist options
  • Save ivajloip/37de084955841eb093ff to your computer and use it in GitHub Desktop.
Save ivajloip/37de084955841eb093ff to your computer and use it in GitHub Desktop.
language: python
python:
- 3.4
build_image: shippableimages/ubuntu1404_python
install:
- pip install -r requirements.txt
before_script:
- mkdir -p shippable/testresults
- mkdir -p shippable/codecoverage
script:
- which python
- python --version
- pip --version
- pylint antigravity
- coverage run --source antigravity `which nosetests` --with-xunit --xunit-file=shippable/testresults/nosetests.xml
- coverage xml -o shippable/codecoverage/coverage.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment