mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 13:23:15 +02:00
Root cause of the zero-runs-ever CI mystery: GitHub Actions was disabled at the repo level (actions/permissions enabled:false). Re-enabled it via the API, which immediately surfaced a backlog of pre-existing issues that local pre-commit runs (scoped to changed files only) never caught: - pylama is unused (grep confirms zero references outside requirements.txt) and its pytest plugin auto-loads via setuptools entry points, crashing the pytest-coverage hook with ModuleNotFoundError: pkg_resources on the CI runner. Removed it. - zsh-syntax hook had no zsh binary on the CI image; added an install step. - _load_trusted_device_values() in adb_common.sh had an unused optional arg (shellcheck SC2120); confirmed via grep it's never called with one, including in tests, and simplified it away. - claude-code-review.yml/claude.yml had a stray trailing blank line. None of this is related to the wake_alarm gatelock migration committed earlier; it's purely the CI/lint backlog that surfaced once Actions actually started running for the first time in the repo's history. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01A7vbgtFfZmfxJtN5DdtJky
81 lines
1.7 KiB
Plaintext
81 lines
1.7 KiB
Plaintext
# ==============================================================================
|
|
# testsAndMisc — combined runtime + development dependencies
|
|
# Install with: pip install -r meta/requirements.txt
|
|
# Sorted alphabetically (enforced by pre-commit `requirements-txt-fixer`).
|
|
# ==============================================================================
|
|
|
|
add-trailing-comma>=3.1.0
|
|
aiohttp>=3.9
|
|
autoflake>=2.2.0
|
|
autopep8>=2.0.0
|
|
bandit>=1.7.0
|
|
beautifulsoup4>=4.0
|
|
berserk>=0.13
|
|
black>=24.0.0
|
|
bottle>=0.12
|
|
codespell>=2.2.0
|
|
coverage>=7.4.0
|
|
darglint>=1.8.0
|
|
dead>=1.5.0
|
|
docformatter>=1.7.0
|
|
fixit>=2.1.0
|
|
flake8>=7.0.0
|
|
flake8-annotations>=3.0.0
|
|
flake8-bandit>=4.1.0
|
|
flake8-bugbear>=24.0.0
|
|
flake8-comprehensions>=3.14.0
|
|
flake8-docstrings>=1.7.0
|
|
flake8-eradicate>=1.5.0
|
|
flake8-pie>=0.16.0
|
|
flake8-print>=5.0.0
|
|
flake8-pyi>=24.0.0
|
|
flake8-pytest-style>=2.0.0
|
|
flake8-return>=1.2.0
|
|
flake8-simplify>=0.21.0
|
|
gatelock @ git+https://github.com/kuhyx/gatelock@v0.1.0
|
|
genanki>=0.13
|
|
geopandas>=1.0
|
|
howlongtobeatpy>=1.0
|
|
hypothesis>=6.98.0
|
|
importlib-metadata>=7.0.0
|
|
interrogate>=1.5.0
|
|
isort>=5.13.0
|
|
lxml>=5.0
|
|
matplotlib>=3.0
|
|
mccabe>=0.7.0
|
|
mitmproxy>=10.0
|
|
mypy>=1.8.0
|
|
numpy>=1.20
|
|
opencv-python>=4.0
|
|
pillow>=10.0
|
|
pip-audit>=2.6.0
|
|
pipdeptree>=2.14.0
|
|
pre-commit>=3.6.0
|
|
prospector>=1.10.0
|
|
pycodestyle>=2.11.0
|
|
pydocstyle>=6.3.0
|
|
pyflakes>=3.2.0
|
|
pygame>=2.0
|
|
pylint>=3.0.0
|
|
pyright>=1.1.350
|
|
pytest>=8.0.0
|
|
pytest-cov>=4.1.0
|
|
pytest-randomly>=3.15.0
|
|
pytest-sugar>=1.0.0
|
|
pytest-timeout>=2.2.0
|
|
pytest-xdist>=3.5.0
|
|
python-chess>=1.999
|
|
python-kasa>=0.7
|
|
pyupgrade>=3.15.0
|
|
radon>=6.0.0
|
|
reorder-python-imports>=3.12.0
|
|
requests>=2.0
|
|
ruff>=0.8.0
|
|
safety>=2.3.0
|
|
selenium>=4.0
|
|
types-python-dateutil>=2.8.0
|
|
types-PyYAML>=6.0.0
|
|
types-requests>=2.31.0
|
|
types-setuptools>=69.0.0
|
|
websockets>=13.0
|