Update CI and toxfile to use new group structure

This commit is contained in:
2023-04-13 14:02:25 -04:00
parent ac342d4dc6
commit 750d3c07b6
4 changed files with 29 additions and 33 deletions

45
tox.ini
View File

@@ -11,11 +11,8 @@ skip_missing_interpreters = true
description = Run the tests
require_locked_deps = true
require_poetry = true
locked_deps =
pytest
pytest-cov
ruamel.yaml
toml
poetry_dep_groups =
test
commands =
pytest {toxinidir}/tests/ \
--cov peewee_plus \
@@ -26,16 +23,8 @@ commands =
description = Static formatting and quality enforcement
basepython = python3.10
ignore_errors = true
locked_deps =
black
blacken-docs
mdformat
mdformat-gfm
mypy
reorder-python-imports
pre-commit
pre-commit-hooks
pylint
poetry_dep_groups =
static
commands =
pre-commit run \
--all-files
@@ -49,11 +38,9 @@ commands =
description = Static formatting and quality enforcement for the tests
basepython = python3.10
ignore_errors = true
locked_deps =
mypy
pylint
pytest
types-toml
poetry_dep_groups =
static
test
commands =
pylint {toxinidir}/tests/ \
--rcfile {toxinidir}/.pylintrc
@@ -66,10 +53,8 @@ description = Security checks
basepython = python3.10
skip_install = true
ignore_errors = true
locked_deps =
bandit
safety
poetry
poetry_dep_groups =
security
commands =
bandit {toxinidir}/peewee_plus.py \
--recursive \
@@ -82,7 +67,13 @@ commands =
--format requirements.txt \
--output {envtmpdir}/requirements.txt \
--without-hashes \
--dev
--with ci \
--with test \
--with security \
--with static \
--with dev
safety check \
--json \
--file {envtmpdir}/requirements.txt
--file {envtmpdir}/requirements.txt \
--output text \
# https://github.com/pytest-dev/py/issues/287
--ignore 51457