Commit a1a2308 1 parent 910e40a commit a1a2308 Copy full SHA for a1a2308
File tree 3 files changed +3
-1
lines changed
3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
[flake8]
2
2
max-line-length = 88
3
+ ignore = E501
3
4
exclude =
4
5
env
5
6
.tox
Original file line number Diff line number Diff line change 23
23
toxenv :
24
24
- isort
25
25
- black
26
+ - flake8
26
27
steps :
27
28
- uses : actions/checkout@v4
28
29
- uses : actions/setup-python@v5
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def test_check_admin_index_app_missing(self):
63
63
self .assertEqual (len (result ), 1 )
64
64
65
65
@override_settings (TEMPLATES = [{"OPTIONS" : {"context_processors" : []}}])
66
- def test_check_admin_index_context_process_present (self ):
66
+ def test_check_admin_index_context_process_not_present (self ):
67
67
result = check_admin_index_context_processor ([])
68
68
self .assertEqual (len (result ), 0 )
69
69
You can’t perform that action at this time.
0 commit comments