summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2019-10-27 20:05:00 +0100
committermathieui <mathieui@mathieui.net>2019-10-27 20:05:00 +0100
commit33ef0331e9a93da6d7412249539379891a97316b (patch)
treee2d696d666be4e3596fddaaeb9748becc6dd08a2
parent8499f1cbc97c55dba6d47043972569df94f6a350 (diff)
downloadpoezio-33ef0331e9a93da6d7412249539379891a97316b.tar.gz
poezio-33ef0331e9a93da6d7412249539379891a97316b.tar.bz2
poezio-33ef0331e9a93da6d7412249539379891a97316b.tar.xz
poezio-33ef0331e9a93da6d7412249539379891a97316b.zip
Add testing for python 3.7
since python:3 is now 3.8
-rw-r--r--.gitlab-ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 722e881f..e029c83d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -65,6 +65,20 @@ pytest-3.6:
- python3 setup.py install
- py.test -v test/
+pytest-3.7:
+ stage: test
+ image: python:3.7
+ script:
+ - apt-get update && apt-get install -y libidn11-dev
+ - git clone git://git.louiz.org/slixmpp
+ - pip3 install pytest pyasn1-modules cffi --upgrade
+ - cd slixmpp
+ - python3 setup.py install
+ - cd ..
+ - python3 setup.py install
+ - py.test -v test/
+
+
pytest-latest:
stage: test
image: python:3