File tree Expand file tree Collapse file tree 3 files changed +39
-12
lines changed Expand file tree Collapse file tree 3 files changed +39
-12
lines changed Original file line number Diff line number Diff line change @@ -24,3 +24,37 @@ dependencies = [
24
24
[build-system ]
25
25
requires = [" hatchling" ]
26
26
build-backend = " hatchling.build"
27
+
28
+ [tool .flake8 ]
29
+ exclude = [
30
+ " .git" ,
31
+ " .mypy_cache" ,
32
+ " __pycache__" ,
33
+ " env" ,
34
+ " build" ,
35
+ " dist" ,
36
+ ]
37
+
38
+ [tool .mypy ]
39
+ strict = true
40
+ files = [" ." ]
41
+ exclude = [
42
+ " .git" ,
43
+ " .mypy_cache" ,
44
+ " __pycache__" ,
45
+ " env" ,
46
+ " build" ,
47
+ " dist" ,
48
+ ]
49
+
50
+ [tool .pytest .ini_options ]
51
+ norecursedirs = [
52
+ " .git" ,
53
+ " .mypy_cache" ,
54
+ " __pycache__" ,
55
+ " env" ,
56
+ " build" ,
57
+ " dist" ,
58
+ ]
59
+ addopts = " -Werror --cov=samp_query --cov-report=term-missing --cov-fail-under=100"
60
+ trio_mode = true
Original file line number Diff line number Diff line change 1
1
flake8
2
+ # See https://github.com/PyCQA/flake8/issues/234
3
+ flake8-pyproject
2
4
mypy
3
5
trio-typing
6
+ pytest
7
+ pytest-cov
8
+ pytest-trio
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments