-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
32 lines (28 loc) · 1.04 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
[tox]
envlist = py{37,38,39,310}
# Define the minimal tox version required to run;
# if the host tox is less than this the tool with create an environment and
# provision it with a tox that satisfies it under provision_tox_env.
# At least this version is needed for PEP 517/518 support.
minversion = 3.3.0
# Activate isolated build environment. tox will use a virtual environment
# to build a source distribution from the source tree. For build tools and
# arguments use the pyproject.toml file as specified in PEP-517 and PEP-518.
isolated_build = true
[testenv]
deps =
check-manifest >= 0.47
flake8 >= 4.0.1
mypy >= 0.930
pytest >= 6.2.5
numpy == 1.21.5 # numpy v1.22 droppped python v3.7 support
commands =
check-manifest --ignore '.editorconfig,tox.ini,scripts/**,tests/**'
python setup.py check --metadata --strict
flake8 .
mypy --install-types --non-interactive --show-error-codes --exclude venv/ .
pytest -rfEsP tests {posargs}
[flake8]
extend-exclude = .idea/,build/,dist/,venv/
max-line-length = 140
select = E,W,F