We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 234624e commit 3eb6d5eCopy full SHA for 3eb6d5e
.github/workflows/ci.yml
@@ -25,8 +25,8 @@ jobs:
25
with:
26
python-version: "3.x"
27
cache: pip
28
- cache-dependency-path: linter-requirements.txt
29
- - run: python -m pip install -r linter-requirements.txt
+ cache-dependency-path: pyproject.toml
+ - run: python -m pip install .[lint]
30
- run: ${{ matrix.lint-command }}
31
32
dist:
linter-requirements.txt
pyproject.toml
@@ -52,6 +52,13 @@ test = [
52
"pytest-cov",
53
"pytest-django",
54
]
55
+lint = [
56
+ "bandit==1.7.7",
57
+ "black==24.2.0",
58
+ "flake8==7.0.0",
59
+ "isort==5.13.2",
60
+ "pydocstyle[toml]==6.3.0",
61
+]
62
docs = [
63
"sphinx",
64
0 commit comments