-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 2.41 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (65 loc) · 2.41 KB
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
[build-system]
requires = ["pbr>=6.1.1"]
build-backend = "pbr.build"
[project]
name = "neutron-tempest-plugin"
description = "Tempest plugin for Neutron Project"
authors = [
{name = "OpenStack", email = "openstack-discuss@lists.openstack.org"},
]
readme = {file = "README.rst", content-type = "text/x-rst"}
license = {text = "Apache-2.0"}
dynamic = ["version", "dependencies"]
requires-python = ">=3.10"
classifiers = [
"Environment :: OpenStack",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
"Bug Tracker" = "https://bugs.launchpad.net/neutron"
"Documentation" = "https://docs.openstack.org/neutron-tempest-plugin"
"Source Code" = "https://opendev.org/openstack/neutron-tempest-plugin"
[tool.setuptools]
packages = [
"neutron_tempest_plugin"
]
[project.entry-points."tempest.test_plugins"]
neutron_tests = "neutron_tempest_plugin.plugin:NeutronTempestPlugin"
[tool.mypy]
incremental = true
pretty = true
show_error_context = true
show_column_numbers = true
warn_unused_ignores = true
# remove gradually as progress is made
disable_error_code = "import-untyped,var-annotated,import-not-found,assignment,valid-type"
# honor excludes by not following there through imports
follow_imports = "silent"
files = "neutron_tempest_plugin"
exclude = "(?x)(neutron_tempest_plugin/scenario/test_dns_integration.py)"
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = ["E4", "E5", "E7", "E9", "F", "G", "S", "UP"]
ignore = [
"S108", # Probable insecure usage of temporary file or directory
"S311", # Suspicious non-cryptographic random usage
"S603", # Subprocess without shell equals true
"S604", # Subprocess call with truthy shell parameter
"UP031", # Use format specifiers instead of percent format
"UP032", # Use f-string instead of `format` call
]
[tool.ruff.lint.per-file-ignores]
"neutron_tempest_plugin/exceptions.py" = ["S101"]
"neutron_tempest_plugin/api/base.py" = ["E501"]
"neutron_tempest_plugin/common/shell.py" = ["S602"]