mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-17 04:09:19 +00:00
* update test scripts * align CI behavior between linux and android * remove automatically cancel in 15min * enable cancel-in-progress * fix ty check issue * update and fix pylint issue * update runner such that we are not restricted by the 15min limit rule * fix flake8 lint issue * update runner according to review feedback * code update according to review feedback * switch from llama-cli to llama-completion binary with -no-cnv flag
31 lines
614 B
TOML
31 lines
614 B
TOML
[environment]
|
|
extra-paths = ["./gguf-py", "./examples/model-conversion/scripts", "./tools/server/tests", "./scripts/snapdragon/qdc/tests"]
|
|
python-version = "3.10"
|
|
|
|
[rules]
|
|
deprecated = "warn"
|
|
|
|
[src]
|
|
exclude = [
|
|
"./tools/mtmd/legacy-models/**",
|
|
]
|
|
|
|
[[overrides]]
|
|
include = [
|
|
"./tools/server/tests/**",
|
|
"./scripts/snapdragon/qdc/**",
|
|
]
|
|
|
|
[overrides.rules]
|
|
unresolved-reference = "ignore"
|
|
unresolved-import = "ignore"
|
|
unresolved-attribute = "ignore"
|
|
|
|
[[overrides]]
|
|
include = [
|
|
"./examples/pydantic_models_to_grammar.py",
|
|
]
|
|
|
|
[overrides.rules]
|
|
unsupported-operator = "ignore"
|
|
not-subscriptable = "ignore"
|