-
Notifications
You must be signed in to change notification settings - Fork 356
/
Copy pathpyproject.toml
22 lines (22 loc) · 1.06 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
[tool.black]
line-length = 119
target-version = ['py38', 'py39', 'py310']
[tool.pytest.ini_options]
markers = [
"core: marks tests as core adapter test",
"composition: marks tests as composition adapter test",
"heads: marks tests as heads adapter test",
"embeddings: marks tests as embeddings adapter test",
"class_conversion: marks tests as class conversion adapter test",
"prefix_tuning: marks tests as prefix tuning adapter test",
"prompt_tuning: marks tests as prompt tuning adapter test",
"reft: marks tests as reft adapter test",
"unipelt: marks tests as unipelt adapter test",
"compacter: marks tests as compacter adapter test",
"bottleneck: marks tests as bottleneck adapter test",
"ia3: marks tests as ia3 adapter test",
"lora: marks tests as lora adapter test",
"flash_attn_test: marks tests related to flash attention (deselect with '-m \"not flash_attn_test\"')",
"bitsandbytes: select (or deselect with `not`) bitsandbytes integration tests",
"generate: marks tests that use the GenerationTesterMixin"
]