-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.38 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
[build-system]
requires = ["setuptools>=70.2.0", "wheel>=0.44.0"]
build-backend = "setuptools.build_meta"
[project]
name = "masterqa"
readme = "README.md"
dynamic = [
"version",
"license",
"authors",
"scripts",
"description",
"maintainers",
"entry-points",
"dependencies",
"requires-python",
]
[project.urls]
"Homepage" = "https://github.com/masterqa/MasterQA"
"Download" = "https://pypi.org/project/masterqa/#files"
"PyPI" = "https://pypi.org/project/masterqa/"
"Source" = "https://github.com/masterqa/MasterQA"
"Repository" = "https://github.com/masterqa/MasterQA"
[tool.setuptools]
packages = [
"masterqa",
]
[tool.pytest.ini_options]
addopts = ["--capture=tee-sys", "-p no:cacheprovider"]
norecursedirs = [".*", "build", "dist", "recordings", "temp", "assets"]
filterwarnings = [
"ignore::pytest.PytestWarning",
"ignore:.*U.*mode is deprecated:DeprecationWarning",
]
junit_family = ["legacy"]
python_files = ["test_*.py", "*_test.py", "*_tests.py", "*_suite.py"]
python_classes = ["Test*", "*Test*", "*Test", "*Tests", "*Suite"]
python_functions = ["test_*"]
markers = [
"marker1", "marker2", "marker3", "marker_test_suite",
"local", "remote", "offline", "expected_failure",
"qa", "ci", "e2e", "smoke", "ready", "master", "deploy",
"develop", "staging", "production", "release", "active",
]