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
|
[tox]
envlist =
py{36,37,38,39,310}
pypy3
clean
cov
fmt
lint
[testenv]
deps =
.[test]
commands =
pytest {posargs:-vv}
[testenv:build]
basepython = python3.8
deps =
twine
wheel
commands =
python setup.py sdist bdist_wheel
twine check dist/*
python setup.py clean --all
[testenv:clean]
skip_install = true
deps =
cleanpy
commands =
cleanpy --all --exclude-envs .
[testenv:cov]
deps =
.[test]
coverage[toml]>=5
commands =
coverage run -m pytest {posargs:-vv}
coverage report -m
[testenv:fmt]
basepython = python3.8
skip_install = true
deps =
autoflake
black
isort>=5
commands =
autoflake --in-place --recursive --remove-all-unused-imports --ignore-init-module-imports .
isort .
black setup.py test mbstrdecoder
[testenv:lint]
basepython = python3.8
skip_install = true
deps =
codespell
mypy>=0.902
pylama
types-chardet
commands =
python setup.py check
-codespell mbstrdecoder examples test -q 2 --check-filenames --ignore-words-list followings
mypy mbstrdecoder setup.py
pylama
|