Skip to content
Snippets Groups Projects
Commit e56026c4 authored by Frederik Hennig's avatar Frederik Hennig
Browse files

add testsuite CI task for python 3.13

parent 8e1405af
No related branches found
No related tags found
1 merge request!448Fix mutable-default bug in codegen.config with Python 3.11 and newer
Pipeline #73034 failed
......@@ -276,20 +276,9 @@ typecheck:
# -------------------- Unit Tests ---------------------------------------------------------------------
# Normal test - runs on every commit all but "long run" tests
tests-and-coverage:
.testsuite-base:
stage: "Unit Tests"
needs: []
image: i10git.cs.fau.de:5005/pycodegen/pycodegen/nox:ubuntu24.04-cuda12.6
script:
- mkdir -p ~/.config/matplotlib
- echo "backend:template" > ~/.config/matplotlib/matplotlibrc
- mkdir public
- nox --session "testsuite(cupy12)"
tags:
- docker
- cuda11
- AVX
coverage: /Total coverage:\s\d+.\d+\%/
artifacts:
when: always
......@@ -302,6 +291,28 @@ tests-and-coverage:
path: coverage.xml
junit: report.xml
testsuite-gpu-py3.10:
extends: .testsuite-base
image: i10git.cs.fau.de:5005/pycodegen/pycodegen/nox:ubuntu24.04-cuda12.6
script:
- mkdir -p ~/.config/matplotlib
- echo "backend:template" > ~/.config/matplotlib/matplotlibrc
- mkdir public
- nox --session "testsuite-3.10(cupy12)"
tags:
- docker
- cuda11
- AVX
testsuite-cpu-py3.13:
extends: .testsuite-base
image: i10git.cs.fau.de:5005/pycodegen/pycodegen/nox:alpine
script:
- nox --session "testsuite-3.13(cupy12)"
tags:
- docker
- AVX
# -------------------- Documentation ---------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment