From 4cab1f62aaff277f8b8d0a0e0939b0a39b5eff0f Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 13 Dec 2021 20:33:05 +0100 Subject: [PATCH] ci: add python 3.10 and 3.11 testing --- .gitlab-ci.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 48c6be9a..a622deb6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,6 +38,36 @@ test_integration: - pip3 install emoji aiohttp aiodns - ./run_integration_tests.py +test_integration-3.10: + stage: test + tags: + - docker + image: python:3.10 + only: + variables: + - $CI_ACCOUNT1 + - $CI_ACCOUNT2 + script: + - apt update + - apt install -y python3 python3-pip cython3 gpg + - pip3 install emoji aiohttp aiodns + - ./run_integration_tests.py + +test_integration-3.11: + stage: test + tags: + - docker + image: python:3.11-rc + only: + variables: + - $CI_ACCOUNT1 + - $CI_ACCOUNT2 + script: + - apt update + - apt install -y python3 python3-pip cython3 gpg + - pip3 install emoji aiohttp aiodns + - ./run_integration_tests.py + trigger_poezio: stage: trigger tags: