forked from cloudera-labs/cloudera.cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.22 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
[project]
name = "cluster"
dynamic = ["version"]
description = "cloudera.cluster Ansible collection"
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
keywords = []
authors = [
{ name = "Webster Mudge", email = "wmudge@cloudera.com" },
]
classifiers = []
dependencies = []
[tool.hatch.version]
path = "galaxy.yml"
pattern = "version:\\s+(?P<version>[\\d\\.]+)"
[tool.hatch.envs.default]
python = "3.12"
skip-install = true
dependencies = [
"pre-commit",
"coverage[toml]",
"pytest",
"pytest-mock",
# "pytest-cov",
"molecule",
"molecule-plugins",
"molecule-plugins[ec2]",
"tox-ansible",
"ansible-core<2.17", # For RHEL 8 support
"jmespath",
"cm-client",
]
[tool.hatch.envs.lint]
python = "3.12"
skip-install = true
extra-dependencies = [
"ansible-lint",
]
[tool.hatch.envs.lint.scripts]
run = "pre-commit run -a"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
filterwarnings = [
"ignore:AnsibleCollectionFinder has already been configured",
"ignore:'crypt' is deprecated and slated for removal in Python 3.13:DeprecationWarning",
]
markers = [
"prepare: Prepare Cloudera Manager and resources for tests",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"