diff options
author | mathieui <mathieui@mathieui.net> | 2020-12-04 23:08:00 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2020-12-04 23:08:00 +0100 |
commit | 77587a48432901b5a43441f3e41fe26c02aeb8ed (patch) | |
tree | 48211a63546c4e54e7fe89a50a5b84f82c382a6d | |
parent | 2cb2fcefbf3aaed2596d4c49423ad3285fbb277d (diff) | |
download | slixmpp-77587a48432901b5a43441f3e41fe26c02aeb8ed.tar.gz slixmpp-77587a48432901b5a43441f3e41fe26c02aeb8ed.tar.bz2 slixmpp-77587a48432901b5a43441f3e41fe26c02aeb8ed.tar.xz slixmpp-77587a48432901b5a43441f3e41fe26c02aeb8ed.zip |
CI: add integration tests to the gitlab pipeline
-rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e3daa539..3aa76989 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,6 +13,21 @@ test: - pip3 install emoji aiohttp - ./run_tests.py +test_integration: + stage: test + tags: + - docker + image: ubuntu:latest + only: + variables: + - $CI_ACCOUNT1 + - $CI_ACCOUNT2 + script: + - apt update + - apt install -y python3 python3-pip cython3 gpg + - pip3 install emoji aiohttp aiodns + - ./run_integration_tests.py + trigger_poezio: stage: trigger tags: |