-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
42 lines (37 loc) · 645 Bytes
/
Copy pathtox.ini
File metadata and controls
42 lines (37 loc) · 645 Bytes
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
[tox]
envlist = py36,py37,doc,dist
[testenv:py36]
deps =
pytest
pytest-coverage
pytest-openfiles
python-dotenv
-r requirements.txt
commands =
pytest
[testenv:py37]
deps =
pytest
pytest-coverage
pytest-openfiles
python-dotenv
-r requirements.txt
commands =
pytest
[testenv:doc]
basepython = python3.6
deps =
sphinx
sphinx-rtd-theme
sphinxcontrib-napoleon
-r requirements.txt
whitelist_externals =
make
changedir = docs
commands =
sphinx-apidoc -f -o source ../naglib/
make html
[testenv:dist]
basepython = python3.6
commands =
python setup.py sdist bdist_wheel