Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gh checks #3041

Merged
merged 14 commits into from
Mar 5, 2025
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,21 @@ jobs:
- { python-version: "3.9", tox-env: security }
- { python-version: "3.10", tox-env: security }
- { python-version: "3.11", tox-env: security }
- { python-version: "3.10", tox-env: lint }
- { python-version: "3.12", tox-env: security }
- { python-version: "3.13", tox-env: security }
- { python-version: "3.13", tox-env: lint }
# - { python-version: "3.10", tox-env: docs }
- { python-version: "3.9", tox-env: type-checking }
- { python-version: "3.10", tox-env: type-checking }
- { python-version: "3.11", tox-env: type-checking }
- { python-version: "3.12", tox-env: type-checking }
- { python-version: "3.13", tox-env: type-checking }
- { python-version: "3.9", tox-env: py39, max-attempts: 3 }
- { python-version: "3.9", tox-env: py39-no-ext, max-attempts: 3 }
- { python-version: "3.10", tox-env: py310, max-attempts: 3 }
- { python-version: "3.10", tox-env: py310-no-ext, max-attempts: 3 }
- { python-version: "3.11", tox-env: py311, max-attempts: 3 }
- { python-version: "3.11", tox-env: py311-no-ext, max-attempts: 3 }
- { python-version: "3.12", tox-env: py312, max-attempts: 3 }
- { python-version: "3.12", tox-env: py312-no-ext, max-attempts: 3 }
- { python-version: "3.13", tox-env: py313, max-attempts: 3 }
Expand Down
1 change: 1 addition & 0 deletions sanic/worker/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from sanic.worker.restarter import Restarter


SIGKILL: int
if not OS_IS_WINDOWS:
from signal import SIGKILL
else:
Expand Down
Loading