diff options
author | Daniel Schadt <kingdread@gmx.de> | 2022-07-18 11:42:55 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2022-07-18 11:42:55 +0200 |
commit | 7f000cc23c7f159901b5e46a35fbf4c6878d0250 (patch) | |
tree | 0c90624ce4666340dc4b6405e871dc9e704ce1e7 | |
parent | cbf234146dfab74cdd1e3d74a2c9513faa85889f (diff) | |
download | fietsboek-7f000cc23c7f159901b5e46a35fbf4c6878d0250.tar.gz fietsboek-7f000cc23c7f159901b5e46a35fbf4c6878d0250.tar.bz2 fietsboek-7f000cc23c7f159901b5e46a35fbf4c6878d0250.zip |
set tox up to test with pypy (and optionally lxml)
-rw-r--r-- | .gitlab-ci.yml | 5 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6ee22fc..cb3c9ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,6 +23,11 @@ test: script: - tox -e python +test-pypy: + image: pypy:3 + script: + - tox -e pypy3 + lint: script: - tox -e pylint,flake8 @@ -8,7 +8,9 @@ per-file-ignores = envlist = python,pylint,pylint-tests,flake8 [testenv] -deps = pytest +deps = + pytest + lxml: lxml extras = testing passenv = TERM |