diff options
author | Ned Batchelder <nedbat@gmail.com> | 2013-09-12 21:22:27 -0400 |
---|---|---|
committer | Ned Batchelder <nedbat@gmail.com> | 2013-09-12 21:22:27 -0400 |
commit | b8575048782e5f68d7ac7061d129142ddc1bafa1 (patch) | |
tree | 349c7595acbefa604b4b79854a8dd6e28e1c4f2e | |
parent | 9f072940a69aa1417e9631bd6c8912956e798275 (diff) | |
parent | 96a228418e7f3d627549d65c594de6a9bf7fa34a (diff) | |
download | python-coveragepy-git-b8575048782e5f68d7ac7061d129142ddc1bafa1.tar.gz |
Merged in msabramo/coverage_msabramo_travis (pull request #7)
Add .travis.yml for Travis CI (http://travis-ci.org/)
-rw-r--r-- | .travis.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..a6e7265d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: python + +python: + - 2.5 + - 2.6 + - 2.7 + - 3.2 + - pypy + +env: + - COVERAGE_TEST_TRACER=py + - COVERAGE_TEST_TRACER=c + +install: + - python setup.py clean install + +script: + - make testdata + - PYTHONPATH=test/eggsrc nosetests -e test_farm -e is_like_python test |