diff options
author | mathieui <mathieui@mathieui.net> | 2021-12-13 20:41:00 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-12-13 20:41:00 +0100 |
commit | 14ae84d6661e7966125e0e6853074818bf83ec05 (patch) | |
tree | 3b27d76d0ecb7c5f74536ca86457540a1d8f3952 | |
parent | 0cc1095ffc5036f1f5eb8bd3773827d7a60ee04c (diff) | |
parent | 4cab1f62aaff277f8b8d0a0e0939b0a39b5eff0f (diff) | |
download | slixmpp-14ae84d6661e7966125e0e6853074818bf83ec05.tar.gz slixmpp-14ae84d6661e7966125e0e6853074818bf83ec05.tar.bz2 slixmpp-14ae84d6661e7966125e0e6853074818bf83ec05.tar.xz slixmpp-14ae84d6661e7966125e0e6853074818bf83ec05.zip |
Merge branch 'ci-add-python-versions' into 'master'
ci: add python 3.10 and 3.11 testing
See merge request poezio/slixmpp!173
-rw-r--r-- | .gitlab-ci.yml | 30 |
1 files changed, 30 insertions, 0 deletions
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: |