python3.8 -> python3.9 everywhere

This commit is contained in:
Neil Macneale IV
2025-04-28 17:16:12 -07:00
parent 98b01bfdff
commit bc4693ec8a
3 changed files with 6 additions and 6 deletions

View File

@@ -82,9 +82,9 @@ RUN curl -LO https://download.visualstudio.microsoft.com/download/pr/13b9d84c-a3
tar -C /usr/local/bin -xzf dotnet-sdk-5.0.400-linux-x64.tar.gz && \
dotnet --version
# install pip for python3.8
# install pip for python3.9
RUN curl -LO https://bootstrap.pypa.io/get-pip.py && \
python3.8 get-pip.py && \
python3.9 get-pip.py && \
pip --version
# install mysql connector and pymsql

View File

@@ -11,7 +11,7 @@ RUN apt update -y && \
apt update -y && \
apt install -y \
nodejs \
python3.8 \
python3.9 \
python3-pip \
git \
mysql-client \

View File

@@ -31,15 +31,15 @@ teardown() {
}
@test "python mysql.connector client" {
python3.8 $BATS_TEST_DIRNAME/python/mysql.connector-test.py $USER $PORT $REPO_NAME
python3.9 $BATS_TEST_DIRNAME/python/mysql.connector-test.py $USER $PORT $REPO_NAME
}
@test "python pymysql client" {
python3.8 $BATS_TEST_DIRNAME/python/pymysql-test.py $USER $PORT $REPO_NAME
python3.9 $BATS_TEST_DIRNAME/python/pymysql-test.py $USER $PORT $REPO_NAME
}
@test "python sqlachemy client" {
python3.8 $BATS_TEST_DIRNAME/python/sqlalchemy-test.py $USER $PORT $REPO_NAME
python3.9 $BATS_TEST_DIRNAME/python/sqlalchemy-test.py $USER $PORT $REPO_NAME
}
@test "mysql-connector-java client" {