Skip to content

Commit

Permalink
chore: running make upgrade job.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed May 22, 2024
1 parent c11a749 commit bb9c47f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,5 @@ jobs:
ruff check lms/djangoapps/ lms/envs/ lms/lib/ lms/tests.py \
openedx/core/djangoapps/ openedx/core/djangolib/ openedx/core/lib/ openedx/core/tests/ \
openedx/core/tests/ openedx/core/types/ openedx/features/ openedx/testing/ openedx/tests/ \
cms common xmodule --preview
cms common xmodule --preview --verbose
5 changes: 4 additions & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ ignore = [
"E712", # singleton-comparison
"E721", # unidiomatic-typecheck
"E722", # bare-except
"F401", # unused-import
"F403", # wildcard-import
"F811", # function-redefined
"F811", # reimported
Expand All @@ -129,3 +128,7 @@ ignore = [
"PLW0602", # global-variable-not-assigned
"SIM118", # consider-iterating-dictionary
]

[lint.extend-per-file-ignores]
# Also ignore `E402` in all `__init__.py` files.
"__init__.py" = ["E402"]

0 comments on commit bb9c47f

Please sign in to comment.