mirror of
https://github.com/enpaul/peewee-plus.git
synced 2024-11-14 10:36:51 +00:00
80 lines
1.8 KiB
INI
80 lines
1.8 KiB
INI
[tox]
|
|
envlist =
|
|
py{37,38,39,310,311}
|
|
static
|
|
static-tests
|
|
security
|
|
isolated_build = true
|
|
skip_missing_interpreters = true
|
|
|
|
[testenv]
|
|
description = Run the tests
|
|
require_locked_deps = true
|
|
require_poetry = true
|
|
poetry_dep_groups =
|
|
test
|
|
commands =
|
|
pytest {toxinidir}/tests/ \
|
|
--cov peewee_plus \
|
|
--cov-config {toxinidir}/.coveragerc \
|
|
--cov-report term-missing
|
|
|
|
[testenv:static]
|
|
description = Static formatting and quality enforcement
|
|
basepython = python3.10
|
|
ignore_errors = true
|
|
poetry_dep_groups =
|
|
static
|
|
commands =
|
|
pre-commit run \
|
|
--all-files
|
|
pylint {toxinidir}/peewee_plus.py \
|
|
--rcfile {toxinidir}/.pylintrc
|
|
mypy {toxinidir}/peewee_plus.py \
|
|
--ignore-missing-imports \
|
|
--no-strict-optional
|
|
|
|
[testenv:static-tests]
|
|
description = Static formatting and quality enforcement for the tests
|
|
basepython = python3.10
|
|
ignore_errors = true
|
|
poetry_dep_groups =
|
|
static
|
|
test
|
|
commands =
|
|
pylint {toxinidir}/tests/ \
|
|
--rcfile {toxinidir}/.pylintrc
|
|
mypy {toxinidir}/tests/ \
|
|
--ignore-missing-imports \
|
|
--no-strict-optional
|
|
|
|
[testenv:security]
|
|
description = Security checks
|
|
basepython = python3.10
|
|
skip_install = true
|
|
ignore_errors = true
|
|
poetry_dep_groups =
|
|
security
|
|
commands =
|
|
bandit {toxinidir}/peewee_plus.py \
|
|
--recursive \
|
|
--quiet
|
|
bandit {toxinidir}/tests/ \
|
|
--recursive \
|
|
--quiet \
|
|
--skip B101
|
|
poetry export \
|
|
--format requirements.txt \
|
|
--output {envtmpdir}/requirements.txt \
|
|
--without-hashes \
|
|
--with ci \
|
|
--with test \
|
|
--with security \
|
|
--with static \
|
|
--with dev
|
|
safety check \
|
|
--file {envtmpdir}/requirements.txt \
|
|
--output text \
|
|
# https://github.com/pytest-dev/py/issues/287
|
|
--ignore 51457
|