From 235e3a18e45777c45424a09f48947a7c4dfe24c8 Mon Sep 17 00:00:00 2001 From: HgO Date: Sun, 14 Aug 2022 15:52:40 +0200 Subject: [PATCH] remove libolm from pipeline --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c1823ac..68abd09 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,9 +34,9 @@ install: extends: .pip template stage: install script: - - apk add --no-cache gcc g++ yaml-dev python3-dev olm-dev git + - apk add --no-cache gcc g++ yaml-dev python3-dev git - python3 -m venv "${VIRTUAL_ENV}" - - pip install .[all] + - pip install .[test] - pip install -U build twine cache: policy: pull-push @@ -59,7 +59,7 @@ tests: extends: .pip template stage: test script: - - apk add --no-cache libstdc++ olm + - apk add --no-cache libstdc++ - coverage run --source matrix_alertbot -m pytest --junitxml=report.xml - coverage report --precision 2 - coverage xml -o coverage.xml