4cd2d4af2b
Test Browser Use CLI Install / uv pip install (macos-latest) (push) Waiting to run
Test Browser Use CLI Install / uv pip install (windows-latest) (push) Waiting to run
Test Browser Use CLI Install / uv pip install (ubuntu-latest) (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use from local wheel (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use[cli] from PyPI (push) Failing after 1s
package / pip-install-on-macos-latest-py-3.11 (push) Has been skipped
package / pip-install-on-macos-latest-py-3.13 (push) Has been skipped
package / pip-install-on-ubuntu-latest-py-3.11 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.13 (push) Has been skipped
cloud_evals / trigger_cloud_eval_image_build (push) Failing after 1s
docker / build_publish_image (push) Failing after 1s
Test Browser Use CLI Install / browser-use skill sync (push) Failing after 1s
lint / code-style (push) Failing after 0s
lint / type-checker (push) Failing after 1s
package / pip-build (push) Failing after 1s
lint / syntax-errors (push) Failing after 3s
package / pip-install-on-ubuntu-latest-py-3.13 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.11 (push) Has been skipped
test / ${{ matrix.test_filename }} (push) Has been skipped
test / evaluate-tasks (push) Has been skipped
test / setup-chromium (push) Failing after 2s
test / find_tests (push) Failing after 2s
68 lines
1.7 KiB
YAML
68 lines
1.7 KiB
YAML
default_language_version:
|
|
python: python3.11
|
|
|
|
repos:
|
|
- repo: https://github.com/asottile/yesqa
|
|
rev: v1.5.0
|
|
hooks:
|
|
- id: yesqa
|
|
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.4.1
|
|
hooks:
|
|
- id: codespell # See pyproject.toml for args
|
|
additional_dependencies:
|
|
- tomli
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.20.0
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: [--py311-plus]
|
|
|
|
# - repo: https://github.com/asottile/add-trailing-comma
|
|
# rev: v3.1.0
|
|
# hooks:
|
|
# - id: add-trailing-comma
|
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.12.10
|
|
hooks:
|
|
- id: ruff-check
|
|
args: [ --fix ]
|
|
- id: ruff-format
|
|
# see pyproject.toml for more details on ruff config
|
|
|
|
- repo: https://github.com/RobertCraigie/pyright-python
|
|
rev: v1.1.404
|
|
hooks:
|
|
- id: pyright
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
# check for basic syntax errors in python and data files
|
|
- id: check-ast
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
- id: check-json
|
|
- id: check-merge-conflict
|
|
# check for bad files and folders
|
|
- id: check-symlinks
|
|
- id: destroyed-symlinks
|
|
- id: check-case-conflict
|
|
- id: check-illegal-windows-names
|
|
- id: check-shebang-scripts-are-executable
|
|
- id: mixed-line-ending
|
|
- id: fix-byte-order-marker
|
|
- id: end-of-file-fixer
|
|
# best practices enforcement
|
|
- id: detect-private-key
|
|
# - id: check-docstring-first
|
|
- id: debug-statements
|
|
- id: forbid-submodules
|
|
- id: check-added-large-files
|
|
args: ["--maxkb=600"]
|
|
# - id: name-tests-test
|
|
# args: ["--pytest-test-first"]
|