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.
|
2014-03-15 14:55:59 +00:00
|
|
|
meta: tests the test suite itself.
|
2014-03-16 14:46:32 +00:00
|
|
|
real: tests pydle against a real server. Requires PYDLE_TESTS_REAL_HOST and PYDLE_TESTS_REAL_PORT environment variables.
|