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
319 B
Bash
Executable File
13 lines
319 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
export CHROMEDRIVER="${CHROMEDRIVER:="/etc/selenium/chromedriver"}"
|
|
export ARTIFACTS_DIR="${ARTIFACTS_DIR:="/tmp/artifacts/"}"
|
|
|
|
export NAGIOS_USER="nagiosadmin"
|
|
export NAGIOS_PASSWORD="password"
|
|
export NAGIOS_URI="nagios.osh-infra.svc.cluster.local"
|
|
|
|
python3 tools/gate/selenium/nagiosSelenium.py
|