forked from bw2/ConfigArgParse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
45 lines (32 loc) · 912 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
42
43
44
45
[tox]
envlist = py27, py35, py36, py37, py38, pypy, pypy3
[testenv]
#setenv = PYTHONPATH = {toxinidir}:{toxinidir}/configmanager
commands = python setup.py test
# python -m unittest discover
[testenv:py27]
basepython=python2.7
[testenv:py35]
basepython=python3.5
[testenv:py36]
basepython=python3.6
[testenv:py37]
basepython=python3.7
[testenv:py38]
basepython=python3.8
[testenv:py39]
basepython=python3.9
[testenv:pypy]
basepython=pypy
[testenv:pypy3]
basepython=pypy3
[testenv:apidocs]
description = Build the API documentation
# Google-style docstring parsing is not released yet, but it works like a charm.
# TODO: Use released version of pydoctor when https://github.com/twisted/pydoctor/pull/358 is merged.
deps =
docutils
git+https://github.com/tristanlatr/pydoctor.git@c1b2480719ee33422cf27416998e1874616cb2b1
whitelist_externals = bash
commands =
bash ./apidocs.sh