pydle/tox.ini

16 lines
283 B
INI
Raw Normal View History

2014-03-13 15:49:16 +00:00
[tox]
envlist = py32,py33
[testenv]
deps =
2014-03-14 03:32:30 +00:00
coverage
2014-03-13 15:49:16 +00:00
pytest
pytest-cov
2014-03-15 07:11:14 +00:00
commands =
pip install -r requirements.txt
py.test --cov pydle --cov-config .coveragerc --cov-report term-missing .
2014-03-13 15:49:16 +00:00
[pytest]
markers =
slow: may take several seconds or more to complete.