forked from blockdiag/sphinxcontrib-actdiag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
41 lines (35 loc) · 841 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
41
## configuration for tox <http://codespeak.net/tox/>
## tox automates running certain tasks within virtualenvs. The following
## tox configuration outlines a basic setup for running unit tests and
## building sphinx docs in separate virtual environments. Give it a try!
[tox]
envlist=py{35,36,37,38},sphinx2.0,blockdiag_dev
[testenv]
usedevelop = True
deps=
nose
mock
flake8
reportlab
sphinx-testing >= 0.5.2
passenv=
TRAVIS*
commands=
nosetests
flake8 setup.py sphinxcontrib/ tests/
[testenv:sphinx2.0]
deps=
{[testenv]deps}
sphinx <= 2.1
[testenv:blockdiag_dev]
deps=
{[testenv]deps}
git+https://github.com/blockdiag/blockdiag
[testenv:coverage]
deps=
{[testenv]deps}
coverage
coveralls
commands=
nosetests --with-coverage --cover-package=sphinxcontrib
coveralls