forked from skypilot-org/skypilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 746 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 746 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
[build-system]
requires = ["setuptools>=58.0"]
build-backend = "setuptools.build_meta"
[tool.yapf]
based_on_style = "google"
allow_split_before_dict_value = false
[tool.pytest.ini_options]
required_plugins = [
"pytest-xdist",
"pytest-env>=0.6",
"buildkite-test-collector"
]
env = [
"SKYPILOT_DEBUG=1",
"SKYPILOT_DISABLE_USAGE_COLLECTION=1"
]
addopts = "-s -n 16 -q --tb=short --dist loadgroup --disable-warnings"
asyncio_default_fixture_loop_scope = "function"
[tool.mypy]
python_version = "3.8"
follow_imports = "skip"
ignore_missing_imports = true
allow_redefinition = true
check_untyped_defs = true
[tool.isort]
profile = "google"
line_length = 80
multi_line_output = 0
combine_as_imports = true
use_parentheses = true