chore: update requirements

This commit is contained in:
Hsiaoming Yang
2025-02-20 17:08:00 +09:00
parent d12085541b
commit 3f6a2db989
3 changed files with 20 additions and 10 deletions

View File

@@ -28,10 +28,10 @@ jobs:
python-version: "3.8"
- name: Install dependencies
run: pip install -r requirements.txt
run: pip install -r requirements-dev.lock
- name: flake8 lint
run: flake8 src/captcha
- name: ruff lint
run: ruff check
- name: mypy lint
run: mypy
@@ -54,7 +54,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements.txt
run: pip install -r requirements-dev.lock
- name: Report coverage
run: pytest --cov=captcha --cov-report=xml