13f99c1cfa
This change updates the deploy-selenium playbook to install Selenium using pip 3. The shell scripts which call our selenium test python files have been updated to use python 3. Change-Id: I7fc82ecd830d460639c718614ce1cca9fd4d1953
13 lines
318 B
Bash
Executable File
13 lines
318 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
export CHROMEDRIVER="${CHROMEDRIVER:="/etc/selenium/chromedriver"}"
|
|
export ARTIFACTS_DIR="${ARTIFACTS_DIR:="/tmp/artifacts/"}"
|
|
|
|
export GRAFANA_USER="admin"
|
|
export GRAFANA_PASSWORD="password"
|
|
export GRAFANA_URI="grafana.osh-infra.svc.cluster.local"
|
|
|
|
python3 tools/gate/selenium/grafanaSelenium.py
|