update test filename
This commit is contained in:
parent
487635ca28
commit
382d01e8db
|
@ -66,9 +66,7 @@ integration-test:
|
||||||
script:
|
script:
|
||||||
- apk add py3-pip
|
- apk add py3-pip
|
||||||
- pip3 install selenium
|
- pip3 install selenium
|
||||||
- python3 tests/selenium.py
|
- python3 tests/selenium/test.py
|
||||||
- sleep 5
|
|
||||||
- curl -fs http://tt-rss-${CI_COMMIT_SHORT_SHA}-app/tt-rss/index.php | grep -q Login
|
|
||||||
rules:
|
rules:
|
||||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ from selenium import webdriver
|
||||||
options = webdriver.ChromeOptions()
|
options = webdriver.ChromeOptions()
|
||||||
|
|
||||||
driver = webdriver.Remote(
|
driver = webdriver.Remote(
|
||||||
command_executor='http://selenium-hub.selenium-grid.svc.cluster.local/wd/hub',
|
command_executor='http://selenium-hub.selenium-grid.svc.cluster.local:4444/wd/hub',
|
||||||
options=options
|
options=options
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue