Created
February 18, 2016 10:42
-
-
Save ivajloip/37de084955841eb093ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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