-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpants.toml
52 lines (42 loc) · 961 Bytes
/
pants.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
[GLOBAL]
pants_version = "2.22.0rc2"
backend_packages = [
"pants.backend.python",
]
pantsd_max_memory_usage = "8GiB"
[python]
interpreter_constraints = [">=3.8,<3.9"]
enable_resolves = true
resolves = { python-default = "python-default.lock" }
default_resolve = "python-default"
[python-infer]
init_files = "always"
[source]
marker_filenames = ["SOURCE_ROOT"]
[python-repos]
indexes = [
"https://pypi.org/simple/",
]
[pytest]
execution_slot_var = "PANTS_EXECUTION_SLOT"
[subprocess-environment]
env_vars.add = [
"LA_LIBRARY_FILEPATH",
]
[test]
report = true
extra_env_vars = [
"TMPDIR",
"LANG",
"LC_CTYPE",
"LC_ALL",
"SRC_ROOT",
]
[cli.alias]
deps = "dependencies --dependencies-closed"
tdeps = "dependencies --dependencies-transitive --dependencies-closed"
depe = "dependees --dependees-closed"
tdepe = "dependees --dependees-transitive --dependees-closed"
ft = "filter --target-type=python_tests"
[stats]
log = false