Skip to content

Commit 398c595

Browse files
- Introduced exclusion logic for black and pylint tools. (#94)
- The directoty tests will be ignored.
1 parent cde0868 commit 398c595

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.pylintrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,11 @@ unsafe-load-any-extension=no
116116
#verbose=
117117

118118

119+
[MASTER]
120+
121+
ignore-paths=tests
122+
123+
119124
[BASIC]
120125

121126
# Naming style matching correct argument names.

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
[tool.black]
22
line-length = 120
33
target-version = ['py311']
4+
force-exclude = '''test'''
5+
6+
[tool.coverage.run]
7+
omit = ["tests/*"]

0 commit comments

Comments
 (0)