From ccf291e0b976138c3e0ff070d856350a5dad5c52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@ericsson.com> Date: Mon, 12 Aug 2024 21:55:41 +0200 Subject: [PATCH] fix tests --- .gitlab-ci.yml | 32 ++++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c008174..589511d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,12 +8,32 @@ stages: script: - pip install --break-system-packages --upgrade Cython setuptools pip coverage nose2 - pip install --break-system-packages -r requirements.txt - - python setup.py build_ext --inplace - - python -m coverage run -m nose2 -vv -F - - python -m coverage report - variables: - TESTING: "1" - coverage: /TOTAL.*\s+(\d+\%)/ + - python setup.py install + - cd example + - python setup.py bdist_wheel + +test_python35: + extends: .test + image: python:3.5 + +test_python36: + extends: .test + image: python:3.6 + +test_python37: + extends: .test + image: python:3.7 + +test_python38: + extends: .test + image: python:3.8 + + + +test_python39: + extends: .test + image: python:3.9 + test_python310: -- GitLab