summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 1d5e281b864f9052329c5e2764929cfd64b3306f (plain)
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
[tox]
envlist = python
minversion = 2.4

[testenv]
deps =
	setuptools>=31.0.1
	# workaround for yaml/pyyaml#126
	# git+https://github.com/yaml/pyyaml@master#egg=pyyaml;python_version=="3.7"
	# workaround for https://github.com/manahl/pytest-plugins/issues/110
	pytest < 4
	# workaround for https://github.com/manahl/pytest-plugins/issues/122
	virtualenv
commands =
	py.test {posargs}
	python setup.py checkdocs
usedevelop = True
extras = testing

[testenv:build-docs]
extras =
    docs
    testing
changedir = docs
commands =
    python -m sphinx . {toxinidir}/build/html