Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .flake8

This file was deleted.

10 changes: 5 additions & 5 deletions helm/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: django-app
repository: oci://ghcr.io/toggle-corp/charts
version: 0.1.2
digest: sha256:345fe5056e46773c9fd69766d0cbd1184c0892c9db196cacc6fab2ce2561b4c0
generated: "2025-07-23T10:02:03.677212324Z"
- name: toggle-django-helm
repository: oci://ghcr.io/toggle-corp
version: 0.2.0
digest: sha256:670c8daa77095e7a9fffd8bd0027757ad118d789f8d3650615d4a10ed4903fb3
generated: "2025-08-20T21:13:59.058777751+05:45"
6 changes: 3 additions & 3 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sources:
- https://github.com/toggle-corp/timur-backend

dependencies:
- name: django-app
- name: toggle-django-helm
alias: app
version: 0.1.2
repository: oci://ghcr.io/toggle-corp/charts
version: 0.2.0
repository: oci://ghcr.io/toggle-corp
1 change: 1 addition & 0 deletions main/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
"corsheaders",
"rangefilter", # Django admin date range filter
"djangoql",
"rest_framework",
# -- Allauth
"allauth",
"allauth.account",
Expand Down
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,13 @@ extend-select = ["I", "E", "F", "B", "A", "W", "DJ", "AIR", "COM", "INT", "ISC",
"utils/strawberry/*.py" = ["UP"]
"/**/tests/*_mock_data.py" = ["E501"]
"**/snap_test_*.py" = ["E501"]

[tool.coverage.report]
# https://coverage.readthedocs.io/en/7.10.6/excluding.html#advanced-exclusion
exclude_also = [
"raise NotImplementedError",
"if typing.TYPE_CHECKING:",
]
partial_branches = [
"if typing.TYPE_CHECKING:",
]
Loading