# tox (https://tox.readthedocs.io/) is a tool for running tests # in multiple virtualenvs. This configuration file will run the # test suite on all supported python versions. To use it, "pip install tox" # and then run "tox" from this directory. [tox] envlist = py37,security,lint [testenv] # build a wheel and test it wheel = true wheel_build_env = build # whitelist commands we need whitelist_externals = ln [testenv:build] # require setuptools when building deps = setuptools [testenv:py37] # run pytest and coverage deps = coverage pytest pytest-cov commands = pytest --cov={envsitepackagesdir}/incorporealcms/ --cov-report= coverage report -m --fail-under=80 ln -sf {distdir} dist [testenv:security] # run security checks # # again it seems the most valuable here to run against the packaged code deps = bandit commands = bandit {envsitepackagesdir}/incorporealcms/ -r [testenv:lint] # run style checks skip_install = true deps = flake8 flake8-blind-except flake8-builtins flake8-docstrings flake8-executable flake8-logging-format commands = flake8 - flake8 --disable-noqa --select=E,W,F,C,D,A,G,B [flake8] max-line-length = 120 exclude = .tox/ versioneer.py _version.py instance/ max-complexity = 10 [pytest] python_files = *_tests.py tests.py test_*.py [coverage:run] branch = True omit = **/_version.py [coverage:paths] source = ./ .tox/**/site-packages/