mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-04-28 03:30:20 +00:00
* Add the tests that we want to run on external CI * remove extra files * Fixes python issues, reove the deadlock on CI * remove unecessary changes * use override to ty.toml * fix pre-commit and try tests with secret in external repo not upstream * skip if key is unavailable * Fix feedback * switch hexagon to snapdragon * cleanup * fix secrets * remove the copyrights at the top of the files
31 lines
620 B
TOML
31 lines
620 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/tests/**",
|
|
]
|
|
|
|
[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"
|