add django-requests-tracker

This commit is contained in:
Nick Sweeting
2024-04-25 17:59:54 -07:00
parent af669d2f37
commit 4a5ad32040
4 changed files with 23 additions and 10 deletions

View File

@@ -109,6 +109,7 @@ debug = [
"django-debug-toolbar",
"djdt_flamegraph",
"ipdb",
"requests-tracker>=0.3.3",
]
test = [
"pytest",
@@ -119,6 +120,12 @@ lint = [
"django-stubs",
]
[tool.pdm.scripts]
lint = "./bin/lint.sh"
test = "./bin/test.sh"
# all = {composite = ["lint mypackage/", "test -v tests/"]}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
@@ -127,11 +134,6 @@ build-backend = "pdm.backend"
archivebox = "archivebox.cli:main"
[tool.pdm.scripts]
lint = "./bin/lint.sh"
test = "./bin/test.sh"
# all = {composite = ["lint mypackage/", "test -v tests/"]}
[tool.pytest.ini_options]
testpaths = [ "tests" ]