Move isort config to pyproject.toml
This commit is contained in:
parent
603cd31691
commit
2085f0bc89
2 changed files with 4 additions and 2 deletions
|
@ -1,2 +0,0 @@
|
|||
[settings]
|
||||
profile=black
|
|
@ -1,9 +1,13 @@
|
|||
[tool.black]
|
||||
target-version = ['py38']
|
||||
|
||||
[tool.isort]
|
||||
profile = "black"
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
minversion = "6.0"
|
||||
DJANGO_SETTINGS_MODULE = "blog.settings"
|
||||
testpaths = [
|
||||
"articles",
|
||||
"blog",
|
||||
]
|
||||
|
|
Reference in a new issue