summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-22 13:35:01 +0300
committerAndrew Dolgov <[email protected]>2023-10-22 13:35:01 +0300
commitce3eb320768e8f960708ca8aab28d304bed33f50 (patch)
tree10419845245410f12bfba9cfea508376b4b34e4f /.gitlab-ci.yml
parent752c692170a828a4ca6dd6c16070940670da6c8e (diff)
un-mock test, use SELENIUM_IMAGE
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0c9bd93a6..cee85ba28 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -60,13 +60,13 @@ phpdoc:
- rsync -av -e 'ssh -o StrictHostKeyChecking=no' phpdoc/ ${PHPDOC_DEPLOY_HOST}:phpdoc/
integration-test:
+ image: ${SELENIUM_IMAGE}
variables:
TEST_HELM_REPO: https://gitlab.tt-rss.org/tt-rss/helm-charts/tt-rss
+ SELENIUM_GRID_ENDPOINT: http://selenium-hub.selenium-grid.svc.cluster.local:4444/wd/hub
extends: .integration-test
script:
- - apk add py3-pip
- - pip3 install selenium
- - python3 tests/selenium/test.py
+ - python3 tests/integration/selenium_test.py
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH