mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
CI: style
This commit is contained in:
parent
0bb96d17c5
commit
b39c5b7ebb
11
.github/workflows/tox.yml
vendored
11
.github/workflows/tox.yml
vendored
@ -15,7 +15,16 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest] # All OSes pass except Windows because tests need Unix-only fcntl, grp, pwd, etc.
|
os: [ubuntu-latest, macos-latest] # All OSes pass except Windows because tests need Unix-only fcntl, grp, pwd, etc.
|
||||||
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8" ]
|
python-version:
|
||||||
|
# CPython <= 3.7 is EoL since 2923-06-27
|
||||||
|
- "3.7"
|
||||||
|
- "3.8"
|
||||||
|
- "3.9"
|
||||||
|
- "3.10"
|
||||||
|
- "3.11"
|
||||||
|
- "3.12"
|
||||||
|
# PyPy <= 3.8 is EoL since 2023-06-16
|
||||||
|
- "pypy-3.8"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Using Python ${{ matrix.python-version }}
|
- name: Using Python ${{ matrix.python-version }}
|
||||||
|
|||||||
8
tox.ini
8
tox.ini
@ -1,5 +1,11 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist = py{37,38,39,310,311,312,py3}, lint, docs-lint, pycodestyle, run-entrypoint, run-module
|
envlist =
|
||||||
|
py{37,38,39,310,311,312,py3},
|
||||||
|
lint,
|
||||||
|
docs-lint,
|
||||||
|
pycodestyle,
|
||||||
|
run-entrypoint,
|
||||||
|
run-module,
|
||||||
skipsdist = false
|
skipsdist = false
|
||||||
; Can't set skipsdist and use_develop in tox v4 to true due to https://github.com/tox-dev/tox/issues/2730
|
; Can't set skipsdist and use_develop in tox v4 to true due to https://github.com/tox-dev/tox/issues/2730
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user