mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 11:40:32 +00:00
Some checks failed
Auto Create GitHub Release on Version Change / check-version-change (push) Waiting to run
Auto Create GitHub Release on Version Change / create-release (push) Blocked by required conditions
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Build Skyvern SDK and publish to PyPI / check-version-change (push) Waiting to run
Build Skyvern SDK and publish to PyPI / run-ci (push) Blocked by required conditions
Build Skyvern SDK and publish to PyPI / build-sdk (push) Blocked by required conditions
Build Skyvern TS SDK and publish to npm / check-version-change (push) Waiting to run
Build Skyvern TS SDK and publish to npm / build-and-publish-sdk (push) Blocked by required conditions
zizmor / Audit GitHub Actions (push) Has been cancelled
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
481 B
INI
20 lines
481 B
INI
[mypy]
|
|
namespace_packages = True
|
|
follow_imports = skip
|
|
check_untyped_defs = True
|
|
disallow_untyped_defs = True
|
|
exclude = ^(venv|venv-dev)
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-skyvern.library.*]
|
|
ignore_missing_imports = False
|
|
follow_imports = normal
|
|
disable_error_code = arg-type, override, return-value, valid-type, no-any-return, attr-defined
|
|
|
|
; Disabling for generated code
|
|
[mypy-skyvern.client.*]
|
|
follow_imports = normal
|
|
ignore_errors = True
|
|
|
|
[mypy-numpy.*]
|
|
ignore_errors = True
|