Skip to content
Snippets Groups Projects

Add Python 3.12 to tests

Merged Joscha Schmiedt requested to merge f-py312 into dev
All threads resolved!
Files
3
+ 17
1
@@ -62,7 +62,7 @@ unittest_py3.7:
script: &python_test_script
# Python docker has problems with tox and pip so use plain pytest here
- touch ~/.pylinkahead.ini
- pip install nose pytest pytest-cov python-dateutil jsonschema>=4.4.0
- pip install pynose pytest pytest-cov jsonschema>=4.4.0 setuptools
- pip install .
- python -m pytest unittests
@@ -100,6 +100,22 @@ unittest_py3.11:
image: python:3.11
script: *python_test_script
unittest_py3.12:
tags: [ docker ]
stage: test
needs: [ ]
image: python:3.12
script: *python_test_script
unittest_py3.13:
allow_failure: true
tags: [ docker ]
stage: test
needs: [ ]
image: python:3.13-rc
script: *python_test_script
# Trigger building of server image and integration tests
trigger_build:
stage: deploy
Loading