forked from fluves/pywaterinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
72 lines (61 loc) · 1.91 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Tox configuration file
# Read more under https://tox.readthedocs.org/
# THIS SCRIPT IS SUPPOSED TO BE AN EXAMPLE. MODIFY IT ACCORDING TO YOUR NEEDS!
[main]
name = pywaterinfo
[tox]
minversion = 3.15
envlist = py37,py38,py39
skip_missing_interpreters=true
[testenv]
description = invoke pytest to run automated tests
allowlist_externals = pytest
setenv =
TOXINIDIR = {toxinidir}
passenv =
HOME HIC_TOKEN VMM_TOKEN
extras =
develop
commands =
pytest {posargs}
[testenv:{clean,build}]
description =
Build (or clean) the package in isolation according to instructions in:
https://setuptools.readthedocs.io/en/latest/build_meta.html#how-to-use-it
https://github.com/pypa/pep517/issues/91
https://github.com/pypa/build
# NOTE: build is still experimental, please refer to the links for updates/issues
skip_install = True
changedir = {toxinidir}
deps =
build: build[virtualenv]
commands =
clean: python -c 'from shutil import rmtree; rmtree("build", True); rmtree("dist", True)'
build: python -m build .
# By default `build` produces wheels, you can also explicitly use the flags `--sdist` and `--wheel`
[testenv:{docs,doctests}]
description = invoke sphinx-build to build the docs/run doctests
setenv =
DOCSDIR = {toxinidir}/docs
BUILDDIR = {toxinidir}/docs/_build
docs: BUILD = html
doctests: BUILD = doctest
extras =
develop
commands =
sphinx-build -b {env:BUILD} -d "{env:BUILDDIR}/doctrees" "{env:DOCSDIR}" "{env:BUILDDIR}/{env:BUILD}" {posargs}
[testenv:pre-commit]
skip_install = true
deps = pre-commit
commands = pre-commit run --all-files --show-diff-on-failure
[testenv:dev]
description = Create development environment with venv and register ipykernel
basepython = python3
usedevelop = true
envdir = {toxinidir}/venv
extras =
develop
deps =
ipykernel
commands =
python -m ipykernel install --user --name {[main]name} --display-name 'Python py39 ({[main]name})'