Skip to content

Support the deprecation of asyncore in python 3.12 #473

Support the deprecation of asyncore in python 3.12

Support the deprecation of asyncore in python 3.12 #473

name: Integration tests
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
tests:
name: test ${{ matrix.event_loop_manager }} (${{ matrix.python_version }})
if: "!contains(github.event.pull_request.labels.*.name, 'disable-integration-tests')"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
python-version: "3.8"
event_loop_manager: "libev"
- os: ubuntu-latest
python-version: "3.8"
event_loop_manager: "asyncio"
- os: ubuntu-latest
python-version: "3.12"
event_loop_manager: "libev"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test with pytest
run: |
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
./ci/run_integration_test.sh tests/integration/standard/ tests/integration/cqlengine/