Skip to content
Snippets Groups Projects

Add Python 3.12 to tests

Merged Joscha Schmiedt requested to merge f-py312 into dev
Files
2
+ 17
1
@@ -62,7 +62,7 @@ unittest_py3.7:
@@ -62,7 +62,7 @@ unittest_py3.7:
script: &python_test_script
script: &python_test_script
# Python docker has problems with tox and pip so use plain pytest here
# Python docker has problems with tox and pip so use plain pytest here
- touch ~/.pylinkahead.ini
- 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 .
- pip install .
- python -m pytest unittests
- python -m pytest unittests
@@ -100,6 +100,22 @@ unittest_py3.11:
@@ -100,6 +100,22 @@ unittest_py3.11:
image: python:3.11
image: python:3.11
script: *python_test_script
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 building of server image and integration tests
trigger_build:
trigger_build:
stage: deploy
stage: deploy
Loading