Update configuration to latest version

master
Антон Касимов 2022-10-24 00:03:07 +03:00
parent 0034571ecb
commit 8419ecb6f7
Signed by: toxa
SSH Key Fingerprint: SHA256:fGoT3aBWeTp6/0uhMz56IJDyZDzSbRc06AdWcNcRxNg
5 changed files with 22 additions and 15 deletions

View File

@ -1,5 +1,5 @@
[nitpick]
minimum_version = "0.27.0"
minimum_version = "0.32.0"
[nitpick.styles]
include = [

View File

@ -3,9 +3,10 @@
"Pipfile" = "Use pyproject.toml instead"
"Pipfile.lock" = "Use pyproject.toml instead"
".isort.cfg" = "Move values to setup.cfg, section [isort]"
".isort.cfg" = "Move values to pyproject.toml, section [tool.isort]"
".flake8" = "Move values to setup.cfg, section [flake8]"
"mypy.ini" = "Move values to setup.cfg, section [mypy]"
"mypy.ini" = "Move values to pyproject.toml, section [tool.mypy]"
"pytest.ini" = "Move values to pyproject.toml, section [tool.pytest.ini_options]"
".travis.yml" = "Travis is shutting down, please switch to some other CI service"
".pyup.yml" = "Configure your CI with safety instead: https://github.com/pyupio/safety#using-safety-with-a-ci-service"

View File

@ -1,4 +1,4 @@
["setup.cfg".isort]
["pyproject.toml".tool.isort]
multi_line_output = 3
include_trailing_comma = true
use_parentheses = true

View File

@ -1,7 +1,15 @@
["pyproject.toml".tool.poetry.dev-dependencies]
pytest = "^6.2.3"
pytest-cov = "^3.0.0"
["pyproject.toml".tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
pytest-cov = "^4.0.0"
pytest-xdist = {extras = ["psutil"], version = "^2.1.0"}
pytest-sugar = "^0.9.4"
Faker = "^9.5.0"
pytest-snapshot = "^0.7.0"
Faker = "^15.1.0"
pytest-snapshot = "^0.9.0"
["pyproject.toml".tool.pytest.ini_options]
testpaths = [
"tests",
]
python_files = "test*.py"
addopts = "-rsxX -l --tb=short --strict-markers"
xfail_strict = "true"

View File

@ -1,13 +1,11 @@
["pyproject.toml".tool.poetry.dependencies]
python = "^3.9"
["pyproject.toml".tool.poetry.dev-dependencies]
wemake-python-styleguide = "^0.15.3"
["pyproject.toml".tool.poetry.group.dev.dependencies]
wemake-python-styleguide = "^0.17.0"
flake8-pytest-style = "^1.3.0"
flake8-SQL = "^0.4.1"
flake8-annotations = "^2.4.1"
flake8-logging-format = "^0.6.0"
flake8-coding = "^1.3.2"
flake8-spellcheck = "^0.24.0"
autopep8 = "^1.5.4"
flake8-logging-format = "^0.8.1"
flake8-spellcheck = "^0.28.0"
isort = "^5.7.0"