django-for-runners_ynh/pyproject.toml

104 lines
2.3 KiB
TOML
Raw Normal View History

2020-12-22 18:55:11 +01:00
[tool.poetry]
2021-10-10 14:35:06 +02:00
name = "for_runners_ynh"
version = "0.15.0+ynh2"
2021-10-10 14:35:06 +02:00
description = "Test for_runners_ynh via local_test.py"
2020-12-22 18:55:11 +01:00
authors = ["JensDiemer <git@jensdiemer.de>"]
license = "GPL"
[tool.poetry.dependencies]
2022-09-18 18:58:52 +02:00
python = ">=3.7,<4.0.0" # TODO: Update to >=3.8 after YunoHost updates to Bullseye
django_yunohost_integration = {version = ">=0.4.0", extras = ["ynh"]}
2021-01-17 12:00:46 +01:00
2022-09-18 18:58:52 +02:00
django-for-runners = ">=0.15.0"
2020-12-22 18:55:11 +01:00
[tool.poetry.dev-dependencies]
2022-09-18 17:35:54 +02:00
bx_py_utils = "*" # https://github.com/boxine/bx_py_utils
bx_django_utils = "*" # https://github.com/boxine/bx_django_utils
2021-01-17 11:32:28 +01:00
tox = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
2022-04-15 16:45:12 +02:00
pytest-darker = "*" # https://github.com/akaihola/pytest-darker
2021-01-17 11:32:28 +01:00
coveralls = "*"
isort = "*"
flake8 = "*"
2022-09-18 17:35:54 +02:00
EditorConfig = "*" # https://github.com/editorconfig/editorconfig-core-py
2022-09-18 18:58:52 +02:00
safety = "*" # https://github.com/pyupio/safety
2020-12-22 18:55:11 +01:00
[build-system]
2022-09-18 18:58:52 +02:00
requires = ["poetry-core"]
2020-12-22 18:55:11 +01:00
build-backend = "poetry.core.masonry.api"
2021-01-17 12:02:05 +01:00
2022-04-15 16:45:12 +02:00
[tool.darker]
src = ['.']
revision = "origin/master..."
line_length = 100
verbose = true
skip_string_normalization = true
diff = false
check = false
stdout = false
isort = true
lint = [
"flake8",
]
log_level = "INFO"
2021-01-17 12:02:05 +01:00
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format
atomic=true
2022-04-15 16:45:12 +02:00
profile='black'
2022-09-18 19:00:39 +02:00
skip_glob=["*/htmlcov/*","*/migrations/*","*/local_test/*"]
2022-04-15 16:45:12 +02:00
line_length=100
2022-04-15 16:59:30 +02:00
known_first_party=["for_runners"]
2021-01-17 12:02:05 +01:00
lines_after_imports=2
[tool.pytest.ini_options]
# https://docs.pytest.org/en/latest/customize.html#pyproject-toml
minversion = "6.0"
2022-09-18 19:00:39 +02:00
norecursedirs = ".* .git __pycache__ conf local_test coverage* dist htmlcov"
2021-01-17 12:02:05 +01:00
# sometimes helpfull "addopts" arguments:
# -vv
# --verbose
# --capture=no
# --trace-config
# --full-trace
# -p no:warnings
addopts = """
--reuse-db
--nomigrations
--cov=.
--cov-report term-missing
--cov-report html
--cov-report xml
--no-cov-on-fail
--showlocals
2022-04-15 16:45:12 +02:00
--darker
2021-01-17 12:02:05 +01:00
--doctest-modules
--failed-first
--new-first
"""
2022-09-18 17:35:54 +02:00
[tool.coverage.run]
omit = [".*"]
2021-01-17 12:02:05 +01:00
[tool.tox]
# https://tox.readthedocs.io/en/latest/example/basic.html#pyproject-toml-tox-legacy-ini
legacy_tox_ini = """
[tox]
isolated_build = True
2022-09-18 17:35:54 +02:00
envlist = py{37,38,39,310}
2021-01-17 12:02:05 +01:00
skip_missing_interpreters = True
[testenv]
passenv = *
whitelist_externals = make
commands =
make pytest
"""