Skip to content

Commit

Permalink
Initial shippable file based on internal Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Smith committed Mar 17, 2015
1 parent f18eada commit 1c6c400
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions shippable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
language: python
python:
- "2.7"
- "pypy"
cache: true

before_install:
- mkdir -p shippable/testresults
- mkdir -p shippable/codecoverage

install:
- "pip install requests"
- "pip install coverage"
- "python setup.py -q develop"

script:
- coverage run -p tests/acitoolkit_test.py
- coverage run -p tests/aciphysobject_test.py
- coverage run -p tests/acitoolkitlib_test.py

after_success:
- coverage combine
- coverage report --include=*acitoolkit*
- coverage xml --include=*acitoolkit*
- mv coverage.xml shippable/codecoverage/
- mv unittests.xml shippable/testresults/

0 comments on commit 1c6c400

Please sign in to comment.