forked from samba-in-kubernetes/sit-test-cases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (33 loc) · 804 Bytes
/
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
[build-system]
requires = ["setuptools >= 42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sit-test-cases"
version = "0.1"
description = "Samba integration tests"
readme = "README.md"
authors = [
{name = "Sachin Prabhu", email = "[email protected]"},
{name = "Anoop C S", email = "[email protected]"},
{name = "Shachar Sharon", email = "[email protected]"},
]
[tool.setuptools]
py-modules = [ "testcases", "testhelper" ]
[tool.setuptools_scm]
[tool.black]
line-length = 79
quiet = true
force-exclude = '''
(
^/testcases/smbtorture/selftest/
)
'''
[tool.mypy]
disallow_incomplete_defs = true
exclude = [
"^testcases/smbtorture/selftest",
]
[tool.pytest.ini_options]
markers = [
"privileged: marks tests as requiring to be run as privileged processes.",
]