32c1abd5d9
Unit test data will now go to a temporary dir that will be deleted once the test completes. The unit tests also setup a logger which will persist so that it can be inspected once tests complete. Also fixes a bug where instance var is missing from decode_hybi() Co-authored-by: natsume.takashi@lab.ntt.co.jp
21 lines
526 B
INI
21 lines
526 B
INI
# 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 = py24,py25,py26,py27,py30
|
|
setupdir = ../
|
|
|
|
[testenv]
|
|
commands = nosetests {posargs}
|
|
deps =
|
|
mox
|
|
nose
|
|
|
|
# At some point we should enable this since tox epdctes it to exist but
|
|
# the code will need pep8ising first.
|
|
#[testenv:pep8]
|
|
#commands = flake8
|
|
#dep = flake8
|