mirror of
https://github.com/trustedsec/hate_crack.git
synced 2026-06-27 08:54:27 -07:00
cabefe5b26
- Add optional [dev] dependency group with mypy, ruff, pytest, and type stubs - Include types-requests, types-beautifulsoup4, and types-openpyxl - Add mypy config to exclude submodule directories - Update GitHub workflow to install with optional dev dependencies - Remove --ignore-missing-imports flag from mypy for stricter type checking
43 lines
986 B
YAML
43 lines
986 B
YAML
name: tests
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
pytest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.13"
|
|
|
|
- name: Install system dependencies
|
|
run: sudo apt-get update && sudo apt-get install -y p7zip-full transmission-cli
|
|
|
|
- name: Install uv
|
|
run: python -m pip install --upgrade pip uv==0.9.28
|
|
|
|
- name: Install project dependencies
|
|
run: |
|
|
uv venv .venv
|
|
uv pip install --python .venv/bin/python ".[dev]"
|
|
|
|
- name: Run ruff
|
|
run: .venv/bin/ruff check hate_crack
|
|
|
|
- name: Run mypy
|
|
run: .venv/bin/mypy hate_crack
|
|
|
|
- name: Run tests
|
|
env:
|
|
HATE_CRACK_RUN_E2E: "0"
|
|
HATE_CRACK_RUN_DOCKER_TESTS: "0"
|
|
HATE_CRACK_RUN_LIVE_TESTS: "0"
|
|
HATE_CRACK_SKIP_INIT: "1"
|
|
run: .venv/bin/python -m pytest
|