12345678910111213141516171819202122232425 |
- [tox]
- envlist = py34, py27, docs
- [testenv]
- commands = {envpython} setup.py test
- changedir = .
- deps = pexpect
- pycrypto
- colorama
- pymysql
- psycopg2
- pymongo==2.8
- sitepackages=True
- [testenv:docs]
- changedir = docs
- deps =
- sphinx
- commands =
- sphinx-build -b html -d {envtmpdir}/doctrees source {envtmpdir}/html
|