Skip to content
Snippets Groups Projects
Commit 9b4186be authored by Anton Tetov Johansson's avatar Anton Tetov Johansson
Browse files

Fix error in .gitlab-ci.yml

parent befb8f42
No related branches found
No related tags found
No related merge requests found
Pipeline #1679 passed with warnings
...@@ -30,7 +30,7 @@ default: ...@@ -30,7 +30,7 @@ default:
- poetry install -vv - poetry install -vv
image: python:3.9-slim-bullseye image: python:3.9-slim-bullseye
.test-template: &test .test-template:
stage: tests stage: tests
image: "python:$PYTHON_VER-slim-bullseye" image: "python:$PYTHON_VER-slim-bullseye"
script: make test script: make test
...@@ -54,12 +54,12 @@ run-pre-commit: ...@@ -54,12 +54,12 @@ run-pre-commit:
# Tests jobs # Tests jobs
"Run tests with Python 3.9": "Run tests with Python 3.9":
extends: .test extends: .test-template
variables: variables:
PYTHON_VER: "3.9" PYTHON_VER: "3.9"
"Run tests with Python 3.10": "Run tests with Python 3.10":
extends: .test extends: .test-template
variables: variables:
PYTHON_VER: "3.10" PYTHON_VER: "3.10"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment