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]
|
[tool.black]
|
||||||
target-version = ['py38']
|
target-version = ['py38']
|
||||||
|
|
||||||
|
[tool.isort]
|
||||||
|
profile = "black"
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
minversion = "6.0"
|
minversion = "6.0"
|
||||||
DJANGO_SETTINGS_MODULE = "blog.settings"
|
DJANGO_SETTINGS_MODULE = "blog.settings"
|
||||||
testpaths = [
|
testpaths = [
|
||||||
"articles",
|
"articles",
|
||||||
|
"blog",
|
||||||
]
|
]
|
||||||
|
|
Reference in a new issue