diff options
author | Marc Abramowitz <marc@marc-abramowitz.com> | 2012-06-25 13:17:05 -0700 |
---|---|---|
committer | Marc Abramowitz <marc@marc-abramowitz.com> | 2012-06-25 13:17:05 -0700 |
commit | 96a228418e7f3d627549d65c594de6a9bf7fa34a (patch) | |
tree | 74568c3278a33e8b594266deaf95898474f47274 | |
parent | c7d1c79367fa22c88a932d6a5e88095b74092fcf (diff) | |
download | python-coveragepy-git-96a228418e7f3d627549d65c594de6a9bf7fa34a.tar.gz |
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 |