-
Notifications
You must be signed in to change notification settings - Fork 2k
/
pyproject.toml
98 lines (96 loc) · 1.83 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[tool.black]
line-length = 120
target-version = ['py310']
extend-exclude = '.*pb2.*'
[tool.isort]
atomic = true
profile = "black"
line_length = 120
skip_gitignore = true
balanced_wrapping = true
filter_files = true
skip_glob = ['*pb2*']
[tool.pytest.ini_options]
pythonpath = [
".",
"tests/suite",
"tests/suite/grpc",
"tests/suite/fixtures",
"tests/suite/utils",
]
addopts = "--tb=native -ra --disable-warnings -x -l -v --strict-markers"
log_cli = true
markers =[
"agent",
"annotations",
"appprotect",
"appprotect_integration",
"appprotect_waf_policies",
"appprotect_waf_policies_allow",
"appprotect_waf_policies_block",
"appprotect_waf_policies_grpc",
"appprotect_waf_policies_vsr",
"appprotect_waf_v5",
"appprotect_watch",
"appprotect_batch",
"basic_auth",
"batch_start",
"create",
"delete",
"dos",
"dos_ingress",
"dos_learning",
"hsts",
"ingresses",
"multi_ns",
"policies",
"policies_rl",
"policies_jwt",
"policies_ac",
"policies_mtls",
"rewrite",
"skip_for_nginx_oss",
"skip_for_loadbalancer",
"smoke",
"startup",
"ts",
"upgrade",
"vs",
"vs_api",
"vs_backup",
"vs_ipv6",
"vs_rewrite",
"vs_responses",
"vs_grpc",
"vs_redirects",
"vs_externaldns",
"vs_externalname",
"vs_canary",
"vs_certmanager",
"vs_config_map",
"vs_grpc",
"vs_upstream",
"vs_use_cluster_ip",
"vsr",
"vsr_api",
"vsr_basic",
"vsr_canned",
"vsr_canary",
"vsr_error_pages",
"vsr_external_name",
"vsr_grpc",
"vsr_redirects",
"vsr_regexes",
"vsr_rewrite",
"vsr_routing",
"vsr_secrets",
"vsr_splits",
"vsr_status",
"vsr_upstream",
"watch_namespace",
"wildcard_tls",
]
testpaths = [
"tests",
"perf-tests",
]