Skip to content

Commit 97108ea

Browse files
Merge pull request #1766 from atlassian/dca-2483-install-latest-bzt-workaround
added workaround for latest bzt
2 parents b7d4bb5 + bb87a28 commit 97108ea

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ RUN if [ "$CHROME_VERSION" = "latest" ]; then wget -O google-chrome.deb $CHROME_
2828
&& rm -rf ./google-chrome.deb
2929

3030
COPY requirements.txt /tmp/requirements.txt
31-
RUN pip install --no-cache-dir -r /tmp/requirements.txt
31+
#TODO Remove --no-deps after Taurus will install the latest setuptools https://raw.githubusercontent.com/Blazemeter/taurus/refs/heads/master/requirements.txt
32+
RUN pip install --no-cache-dir -r /tmp/requirements.txt --no-deps
3233

3334
RUN if [ "$INCLUDE_BZT" = "true" ]; then \
3435
wget https://blazemeter-tools.s3.us-east-2.amazonaws.com/bzt.tar.gz -O /tmp/bzt.tar.gz && \

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ selenium==4.31.0
66
filelock==3.18.0
77
packaging==24.2
88
prettytable==3.16.0
9-
bzt==1.16.32 # bzt 1.16.34 has pinned setuptools==65.5.0, which does not have distutils
9+
bzt==1.16.42
1010
boto3==1.37.30
1111
retry==0.9.2

0 commit comments

Comments
 (0)