From b4fb0b5ed988621e4176db18f89af6bc4d0bb2b6 Mon Sep 17 00:00:00 2001 From: Kaliko Jack Date: Wed, 9 Feb 2022 13:15:29 +0100 Subject: [PATCH] Add CI tests with python 3.10 --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 51c1a9d..de4dc95 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,10 +15,14 @@ stages: only: - pushes +test-py3.10: + extends: ".test" + image: "python:3.10" + coverage: '/musicpd.py\s+\d+\s+\d+\s+(\d+)%/' + test-py3.9: extends: ".test" image: "python:3.9" - coverage: '/musicpd.py\s+\d+\s+\d+\s+(\d+)%/' test-py3.8: extends: ".test" -- 2.39.2