forked from cog-imperial/OMLT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
115 lines (101 loc) · 3.02 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Tox configuration file
# Read more under https://tox.readthedocs.org/
# THIS SCRIPT IS SUPPOSED TO BE AN EXAMPLE. MODIFY IT ACCORDING TO YOUR NEEDS!
[tox]
minversion = 3.15
envlist = py36, py37, py38, py39, py310, lint
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38, lint
3.9: py39
3.10: py310
[testenv]
deps = pytest
extras = testing
commands = pytest {posargs}
#[testenv:fullenv]
#description = Testing with full dependencies
#deps = pytest
#extras = testing
#commands = pytest {posargs}
[testenv:leanenv]
description = Testing with fewer dependencies
deps = pytest
extras = testing_lean
commands = pytest {posargs}
[testenv:notebooks]
deps = pytest
extras = testing
commands = pytest --nbmake --cov-append {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
deps =
-r {toxinidir}/docs/requirements.txt
# ^ requirements.txt shared with Read The Docs
commands =
sphinx-build -b {env:BUILD} -d "{env:BUILDDIR}/doctrees" "{env:DOCSDIR}" "{env:BUILDDIR}/{env:BUILD}" {posargs}
[testenv:publish]
description =
Publish the package you have been developing to a package index server.
By default, it uses testpypi. If you really want to publish your package
to be publicly accessible in PyPI, use the `-- --repository pypi` option.
skip_install = True
changedir = {toxinidir}
passenv =
TWINE_USERNAME
TWINE_PASSWORD
TWINE_REPOSITORY
deps = twine
commands =
python -m twine check dist/*
python -m twine upload {posargs:--repository testpypi} dist/*
[flake8]
extend-ignore = D, E, F, N
per-file-ignores = __init__.py:F401
[testenv:lint]
description = Lint files using isort, black, and flake8
skip_install = True
changedir = {toxinidir}
deps =
black
flake8
flake8-bugbear
flake8-docstrings
isort
pep8-naming
commands =
flake8 --config=tox.ini src/omlt tests/
black --check --diff src/omlt tests
[testenv:format]
description = Format Python files using isort and black
skip_install = true
changedir = {toxinidir}
deps =
black
typing-extensions
isort
commands =
isort src/omlt tests
black src/omlt tests