@@ -42,8 +42,10 @@ optional-dependencies.docs = [
42
42
optional-dependencies.testing = [
43
43
" covdefaults>=2.3" ,
44
44
" coverage>=7.2.2" ,
45
+ " diff-cover>=7.5" ,
45
46
" pytest>=7.2.2" ,
46
47
" pytest-cov>=4" ,
48
+ " pytest-mock>=3.10" ,
47
49
" pytest-timeout>=2.1" ,
48
50
]
49
51
urls.Documentation = " https://py-filelock.readthedocs.io"
@@ -56,6 +58,21 @@ build.hooks.vcs.version-file = "src/filelock/version.py"
56
58
build.targets.sdist.include = [" /src" , " /tests" ]
57
59
version.source = " vcs"
58
60
61
+ [tool .black ]
62
+ line-length = 120
63
+
64
+ [tool .isort ]
65
+ profile = " black"
66
+ known_first_party = [" filelock" ]
67
+ add_imports = [" from __future__ import annotations" ]
68
+
69
+ [tool .flake8 ]
70
+ max-complexity = 22
71
+ max-line-length = 120
72
+ unused-arguments-ignore-abstract-functions = true
73
+ noqa-require-code = true
74
+ dictionaries = [" en_US" , " python" , " technical" , " django" ]
75
+
59
76
[tool .coverage ]
60
77
html.show_contexts = true
61
78
html.skip_covered = false
@@ -65,14 +82,6 @@ report.fail_under = 76
65
82
run.parallel = true
66
83
run.plugins = [" covdefaults" ]
67
84
68
- [tool .black ]
69
- line-length = 120
70
-
71
- [tool .isort ]
72
- profile = " black"
73
- known_first_party = [" filelock" ]
74
- add_imports = [" from __future__ import annotations" ]
75
-
76
85
[tool .mypy ]
77
86
python_version = " 3.11"
78
87
show_error_codes = true
@@ -81,10 +90,3 @@ overrides = [{ module = ["appdirs.*", "jnius.*"], ignore_missing_imports = true
81
90
82
91
[tool .pep8 ]
83
92
max-line-length = " 120"
84
-
85
- [tool .flake8 ]
86
- max-complexity = 22
87
- max-line-length = 120
88
- unused-arguments-ignore-abstract-functions = true
89
- noqa-require-code = true
90
- dictionaries = [" en_US" , " python" , " technical" , " django" ]
0 commit comments