From c844e2fa4afe6b76c1051c0aadc7f7c86834ca71 Mon Sep 17 00:00:00 2001 From: Chewing_Bever Date: Wed, 28 Apr 2021 16:09:44 +0200 Subject: [PATCH] Added PyPy 3.7 tests --- .woodpecker.yml | 8 ++++++++ tox.ini | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 623affb..819ac41 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -23,6 +23,14 @@ pipeline: - pip install -e .[ci] - tox -e py37 + test-3.7-pypy: + group: test + image: pypy:3-7-slim + pull: true + commands: + - pip install -e .[ci] + - tex -e pypy37 + test-3.6: group: test image: python:3.6-alpine diff --git a/tox.ini b/tox.ini index 9e1c1b6..847ba45 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36,py37,py38,py39,lint +envlist = py36,py37,pypy37,py38,py39,lint [testenv] deps = .[test]