forked from rompe/activedirectory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
40 lines (35 loc) · 733 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tox]
minversion=1.3
envlist = py27,py26,py34
addopts = --ignore=setup.py --skip-if-missing-interpreter
[testenv:docs]
downloadcache={toxworkdir}/downloadcache
basepython=python
changedir=docs
deps=
sphinx
six
docutils
ldap3
commands=
sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv]
sitepackages=False
downloadcache={toxworkdir}/downloadcache
deps=
yanc
pytest>=2.4.2
pytest-cov
pytest-xdist
six>=1.7.2
ldap3
virtualenv>=1.11.2
commands=
python -m pytest -n4 --cov-report xml --cov activedirectory --pyargs activedirectory
#.tests
[testenv:py26]
sitepackages=False
downloadcache={toxworkdir}/downloadcache
deps=
{[testenv]deps}
unittest2