-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpants.toml
More file actions
53 lines (45 loc) · 1016 Bytes
/
pants.toml
File metadata and controls
53 lines (45 loc) · 1016 Bytes
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
[GLOBAL]
pants_version = "2.30.2"
backend_packages = [
"pants.backend.python",
"pants.backend.experimental.python.lint.ruff.check",
"pants.backend.experimental.python.typecheck.pyright",
]
[python]
interpreter_constraints = ["==3.13.*"]
enable_resolves = true
[source]
root_patterns = ["/"]
[python.resolves]
python-default = "3rdparty/python/default.lock"
[coverage-py]
config = "pyproject.toml"
install_from_resolve = "python-default"
requirements = ["//:python#coverage"]
[pyright]
version = "pyright@1.1.409"
[pytest]
install_from_resolve = "python-default"
requirements = [
"//:python#pytest",
"//:python#pytest-django",
"//:python#pytest-mock",
]
[ruff]
version = "0.13.0"
[test]
extra_env_vars = [
"ALLOWED_HOSTS",
"CELERY_BROKER_URL",
"CELERY_RESULT_BACKEND",
"DATABASE_URL",
"NEWSLETTER_API_INTERNAL_URL",
"NEWSLETTER_PUBLIC_URL",
"OLLAMA_URL",
"OPENROUTER_API_BASE",
"OPENROUTER_API_KEY",
"OPENROUTER_APP_NAME",
"REDDIT_CLIENT_ID",
"REDDIT_CLIENT_SECRET",
"REDDIT_USER_AGENT",
]