Commit 1af7e188 authored by Robert Bradshaw's avatar Robert Bradshaw

Merge pull request #131 from msabramo/testing

Add support for tox (http://tox.testrun.org/) and Travis CI (http://travis-ci.org/)
parents 1c3a51e7 94b6711b
......@@ -24,3 +24,5 @@ dist/
tags
TAGS
.tox
language: python
python:
- 2.5
- 2.6
- 2.7
# - 3.2
install: pip install .
script: CFLAGS=-O0 python runtests.py -vv
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py25, py26, py27, py30, py31, py32, pypy
[testenv]
setenv = CFLAGS=-O0
commands =
{envpython} runtests.py -vv
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment