Skip to content

Commit 67766d4

Browse files
committed
Update third-party tools exclusions related to ui/forms
1 parent 7f942df commit 67766d4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.codacy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
exclude_paths:
22
- 'picard/resources.py'
3-
- 'picard/ui/ui_*.py'
3+
- 'picard/ui/forms/ui_*.py'
44
engines:
55
coverage:
66
exclude_paths:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ known_qt = ["PyQt6"]
1515
known_resources = ["picard.resources"]
1616
known_test = ["test.*"]
1717
known_third_party = ["dateutil", "fasteners", "mutagen", "yaml"]
18-
skip_glob = ["**/ui_*.py", "picard/resources.py"]
18+
skip_glob = ["picard/ui/forms/ui_*.py", "picard/resources.py"]
1919
combine_as_imports = true
2020
float_to_top = false
2121
force_grid_wrap = 2

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# E501: line too long (xx > 79 characters)
88
# W503: line break occurred before a binary operator
99
ignore = E127,E128,E129,E226,E241,E501,W503
10-
exclude = ui_*.py,picard/resources.py
10+
exclude = picard/ui/forms/ui_*.py,picard/resources.py
1111

1212
[coverage:run]
1313
source = picard
14-
omit = */ui_*.py,picard/resources.py
14+
omit = picard/ui/forms/ui_*.py,picard/resources.py

0 commit comments

Comments
 (0)