forked from Titan-Systems/titan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 867 Bytes
/
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
[tool.black]
line-length = 120
target-version = ['py39']
include = '\.pyi?$'
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
^/foo.py # exclude a file named foo.py in the root of the project (in addition to the defaults)
'''
[tool.pyright]
pythonVersion = '3.9'
venvPath = ''
venv = ''
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
addopts = "-n 8"
markers = [
"requires_snowflake: Mark a test as requiring a Snowflake connection.",
"enterprise: Mark a test that only works on Enterprise Edition Snowflake.",
"standard: Mark a test that works on Standard Edition Snowflake.",
]
filterwarnings = [
"ignore:.*urllib3.contrib.pyopenssl.*:DeprecationWarning"
]
[tool.codespell]
ignore-words-list = [
"priv",
"sproc",
"snowpark",
]
skip = [
"./build/",
]