Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit aafff7a

Browse files
committed
fix: upgrade to python3/pip3
1 parent 7ca3830 commit aafff7a

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

scripts/experience_test.sh

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
#!/usr/bin/env bash
22

33
echo "Installing Chrome web driver..."
4-
source <(curl -sSL "${DEVX_SKIT_ASSETS_GIT_URL_RAW:-https://github.com/IBM/devex-skit-assets/raw/v1.0.0}/scripts/install_chrome.sh")
4+
source <(curl -sSL "${DEVX_SKIT_ASSETS_GIT_URL_RAW:-https://github.com/IBM/devex-skit-assets/raw/v1.2.3}/scripts/install_chrome.sh")
55

66
echo "Starting Chrome web driver..."
7-
source <(curl -sSL "${DEVX_SKIT_ASSETS_GIT_URL_RAW:-https://github.com/IBM/devex-skit-assets/raw/v1.0.0}/scripts/start_chrome.sh")
7+
source <(curl -sSL "${DEVX_SKIT_ASSETS_GIT_URL_RAW:-https://github.com/IBM/devex-skit-assets/raw/v1.2.3}/scripts/start_chrome.sh")
88

9-
echo "Downloading and installing pip..."
10-
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
11-
python3 get-pip.py
12-
pip -V
9+
echo "Checking for pip"
10+
pip3 -V
1311

1412
echo "Installing Selenium Python package..."
15-
pip install selenium
13+
pip3 install selenium
1614

1715
echo "Running UI test using Selenium..."
1816
python3 experience_test.py

0 commit comments

Comments
 (0)