Skip to content
This repository has been archived by the owner on Aug 29, 2020. It is now read-only.

Commit

Permalink
Configure for continuous integration on Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
coldfix committed Jan 27, 2014
1 parent 229c2b5 commit 8a5c07a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
- pip install nose coverage coveralls
script:
# check that the script works as a drop in:
- python setup.py test
# now check the source distribution
- python setup.py sdist
- pip install $(ls ./dist/*.tar.gz | sort -rV | head -n1)
# and perform all the tests:
- coverage run --source=madseq setup.py nosetests
after_success:
- coveralls

0 comments on commit 8a5c07a

Please sign in to comment.