diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 09ffddd8..d527f1cc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -99,6 +99,19 @@ test-3.11-core: coverage_format: cobertura path: coverage.xml +test-pvpy-core: + <<: *only-default + image: pypy:3.9-bullseye + script: + - tox -e pypy-all + artifacts: + when: always + reports: + coverage_report: + coverage_format: cobertura + path: coverage.xml + allow_failure: true + test-3.8-all: <<: *only-default image: python:3.8-bullseye @@ -148,6 +161,19 @@ test-3.11-all: path: coverage.xml coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/' +test-pvpy-all: + <<: *only-default + image: pypy:3.9-bullseye + script: + - tox -e pypy-all + artifacts: + when: always + reports: + coverage_report: + coverage_format: cobertura + path: coverage.xml + allow_failure: true + build-test: stage: test image: python:3.10-bullseye diff --git a/tox.ini b/tox.ini index 9f9da7e1..ccb213e7 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ isolated_build = True skipsdist = true usedevelop = true -envlist = py{38,39,310,311}-{all,core}, docs +envlist = py{38,39,310,311,py}-{all,core}, docs [testenv] setenv = @@ -13,6 +13,7 @@ basepython = py39: python3.9 py310: python3.10 py311: python3.11 + pypy: pypy3 deps= coverage install_command = pip install -e ".[test]" -U {opts} {packages}