aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml5
-rw-r--r--tox.ini4
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
diff --git a/tox.ini b/tox.ini
index 80e93f2..da41521 100644
--- a/tox.ini
+++ b/tox.ini
@@ -8,7 +8,9 @@ per-file-ignores =
envlist = python,pylint,pylint-tests,flake8
[testenv]
-deps = pytest
+deps =
+ pytest
+ lxml: lxml
extras = testing
passenv =
TERM