Not so great value decoding code

This commit is contained in:
Istvan Ruzman
2020-09-03 13:32:34 +02:00
parent 9091f2eb2c
commit f508e1b614
9 changed files with 191 additions and 155 deletions

View File

@@ -38,6 +38,7 @@ python = "^3.7"
[tool.poetry.dev-dependencies]
black = { version = "^19.3.10b0", allow-prereleases = true }
bandit = "^1.6"
pytest = "^5.4"
pytest-black = "^0.3.10"
pytest-cov = "^2.10"
@@ -55,7 +56,7 @@ include = '\.py'
[tool.isort]
combine_as_imports = true
include_trailing_comma = true
line_length = 88
line_length = 80
multi_line_output = 3
use_parentheses = true
@@ -76,6 +77,7 @@ deps =
poetry
commands =
poetry install -v
poetry run bandit -c bandit.yaml -r src/pyrad3
poetry run pytest --black --isort --pylint --pylint-jobs=4 --mypy --flake8 --cov=pyrad3
"""