tox.ini updates, use requirements-dev.txt, fix pathing

This commit is contained in:
Brian S. Stephan 2020-06-23 13:33:15 -05:00
parent 08896a18c1
commit 0af0f4e8aa
1 changed files with 15 additions and 25 deletions

40
tox.ini
View File

@ -14,12 +14,13 @@ wheel_build_env = build
# whitelist commands we need # whitelist commands we need
whitelist_externals = ln whitelist_externals = ln
# for environment sanity, things that are in written code being security # install everything via requirements-dev.txt, so that developer environment
# checked, linted, etc., but are not part of the installed package, should # is the same as the tox environment (for ease of use/no weird gotchas in
# go here, so that all envs may benefit from them # local dev results vs. tox results) and also to avoid ticky-tacky maintenance
[base] # of "oh this particular env has weird results unless I install foo" --- just
# shotgun blast install everything everywhere
deps = deps =
pytest -rrequirements/requirements-dev.txt
[testenv:build] [testenv:build]
# require setuptools when building # require setuptools when building
@ -27,38 +28,20 @@ deps = setuptools
[testenv:py37] [testenv:py37]
# run pytest with coverage # run pytest with coverage
deps =
pytest-cov
{[base]deps}
commands = commands =
pytest --cov={envsitepackagesdir}/incorporealcms/ \ pytest --cov={envsitepackagesdir}/incorporealcms/ \
--cov-report=term-missing --cov-branch --cov-fail-under=90 --cov-report=term-missing --cov-branch --cov-fail-under=95
ln -sf {distdir} . ln -sf {distdir} .
[testenv:security] [testenv:security]
# run security checks # run security checks
# #
# again it seems the most valuable here to run against the packaged code # again it seems the most valuable here to run against the packaged code
deps =
bandit
{[base]deps}
commands = commands =
bandit {envsitepackagesdir}/incorporealcms/ -r bandit {envsitepackagesdir}/incorporealcms/ -r
[testenv:lint] [testenv:lint]
# run style checks # run style checks
skip_install = true
deps =
dlint
flake8
flake8-blind-except
flake8-builtins
flake8-docstrings
flake8-executable
flake8-fixme
flake8-isort
flake8-logging-format
{[base]deps}
commands = commands =
flake8 flake8
- flake8 --disable-noqa --ignore= --select=E,W,F,C,D,A,G,B,I,T,DUO - flake8 --disable-noqa --ignore= --select=E,W,F,C,D,A,G,B,I,T,DUO
@ -70,6 +53,13 @@ source =
[coverage:run] [coverage:run]
branch = True branch = True
# redundant with pytest --cov above, but this tricks the coverage.xml report into
# using the full path, otherwise files with the same name in different paths
# get clobbered. maybe appends would fix this, IDK
include =
.tox/**/incorporealcms/
omit = omit =
**/_version.py **/_version.py
@ -80,7 +70,7 @@ exclude =
versioneer.py versioneer.py
_version.py _version.py
instance/ instance/
ignore = T101 extend-ignore = T101
max-complexity = 10 max-complexity = 10
max-line-length = 120 max-line-length = 120