1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
# The "test" workflow is run on every PR and runs tests across all
# supported python versions and a range of configurations
# specified in tox.ini. Also see the "build" workflow which is only
# run for release branches and covers platforms other than linux-amd64
# (Platform-specific issues are rare these days so we don't want to
# take that time on every build).
name: Test
on: pull_request
permissions: {}
jobs:
# Before starting the full build matrix, run one test configuration
# and the linter (the `black` linter is especially likely to catch
# first-time contributors).
test_quick:
name: Run quick tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
name: Install Python
with:
# Lint python version must be synced with tox.ini
python-version: '3.11'
- name: Install tox
run: python -m pip install tox -c requirements.txt
- name: Run test suite
run: python -m tox -e py311,lint
test_tox:
name: Run full tests
needs: test_quick
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- python: '3.9'
tox_env: py39-full
- python: '3.10'
tox_env: py310-full
- python: '3.10.8'
# Early versions of 3.10 and 3.11 had different deprecation
# warnings in asyncio. Test with them too to make sure everything
# works the same way.
tox_env: py310-full
- python: '3.11'
tox_env: py311-full
- python: '3.11.0'
tox_env: py311-full
- python: '3.12'
tox_env: py312-full
- python: '3.13'
tox_env: py313-full
- python: '3.14.0-beta.1 - 3.14'
tox_env: py314-full
- python: 'pypy-3.10'
# Pypy is a lot slower due to jit warmup costs, so don't run the
# "full" test config there.
tox_env: pypy3
- python: '3.11'
# Docs python version must be synced with tox.ini
tox_env: docs
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: ${{ matrix.python}}
- name: Install apt packages
run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev
- name: Install tox
run: python -m pip install tox -c requirements.txt
- name: Run test suite
run: python -m tox -e ${{ matrix.tox_env }}
test_win:
# Windows tests are fairly slow, so only run one configuration here.
# We test on windows but not mac because even though mac is a more
# fully-supported platform, it's similar enough to linux that we
# don't generally need to test it separately. Windows is different
# enough that we'll break it if we don't test it in CI.
name: Run windows tests
needs: test_quick
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.11'
- name: Run test suite
# TODO: figure out what's up with these log messages
run: py -m tornado.test --fail-if-logs=false
zizmor:
name: Analyze action configs with zizmor
runs-on: ubuntu-22.04
needs: test_quick
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v5
name: Install uv
- name: Run zizmor
run: uvx zizmor .github/workflows
test_cibw:
# cibuildwheel is the tool that we use for release builds in build.yml.
# Run it in the every-PR workflow because it's slightly different from our
# regular build and this gives us easier ways to test freethreading changes.
#
# Note that test_cibw and test_tox both take about a minute to run, but test_tox runs
# more tests; test_cibw spends a lot of its time installing dependencies. Replacing
# test_tox with test_cibw would entail either increasing test runtime or reducing
# test coverage.
name: Test with cibuildwheel
runs-on: ubuntu-22.04
needs: test_quick
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Run cibuildwheel
uses: pypa/cibuildwheel@v2.22
env:
# For speed, we only build one python version and one arch. We throw away the wheels
# built here; the real build is defined in build.yml.
CIBW_ARCHS: native
CIBW_BUILD: cp313-manylinux*
# Alternatively, uncomment the following lines (and replace the previous CIBW_BUILD)
# to test a freethreading build of python.
#CIBW_BUILD: cp313t-manylinux*
#CIBW_ENABLE: cpython-freethreading
# I don't understand what this does but auditwheel seems to fail in this configuration.
# Since we're throwing away the wheels here, just skip it.
# TODO: When we no longer need to disable this, we can enable freethreading in
# build.yml.
#CIBW_REPAIR_WHEEL_COMMAND: ""
|