diff options
| author | Gabriel Falcão <gabriel@nacaolivre.org> | 2014-01-09 09:34:10 -0800 |
|---|---|---|
| committer | Gabriel Falcão <gabriel@nacaolivre.org> | 2014-01-09 09:34:10 -0800 |
| commit | d3d5b8c45cb82a12c919d335bbf064d07245705d (patch) | |
| tree | 8cfb8d732f2bd409038c8f34381ecb43106cb1ac /tox.ini | |
| parent | 4ccb696945e92bb50ff83ea1a4ec2d98aee3eb5e (diff) | |
| parent | a66d25b8889860fb6fbbbb65a38c4bafe61821ed (diff) | |
| download | httpretty-python-3.3-support.tar.gz | |
Merge pull request #133 from CyrilRoelandteNovance/py3_rebasedpython-3.3-support
Py3 rebased
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -1,9 +1,13 @@ [tox] -envlist = py26, py27, py33 +envlist = py26, py27 [testenv] -deps = -r{toxinidir}/requirements.pip -commands = - {envpython} setup.py test - nosetests tests/unit - nosetests tests/functional +deps = -r{toxinidir}/requirements.txt +commands = nosetests -s --verbosity=2 --with-coverage --cover-erase --cover-inclusive tests/unit --cover-package=httpretty + +[testenv:functional] +commands = nosetests -s --verbosity=2 --with-coverage --cover-erase --cover-inclusive tests/functional --cover-package=httpretty + +[testenv:pep8] +deps = flake8 +commands = flake8 httpretty tests |
