Skip to content

Commit 273d047

Browse files
authored
fix(testing-tools): Re-add pytest and diff packages (#1388)
* fix(testing-tools): Re-add pytest and diff This should fix the Trino and NiFi integration tests * changelog * Add comment
1 parent 9fb2353 commit 273d047

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ All notable changes to this project will be documented in this file.
2727

2828
- opensearch: Remove the `performance-analyzer` plugin from the OpenSearch image ([#1357]).
2929

30+
### Fixed
31+
32+
- testing-tools: Re-add `pytest` Python package as well as `diffutils` package ([#1388]).
33+
3034
[#1336]: https://github.com/stackabletech/docker-images/pull/1336
3135
[#1337]: https://github.com/stackabletech/docker-images/pull/1337
3236
[#1340]: https://github.com/stackabletech/docker-images/pull/1340
@@ -40,6 +44,7 @@ All notable changes to this project will be documented in this file.
4044
[#1373]: https://github.com/stackabletech/docker-images/pull/1373
4145
[#1386]: https://github.com/stackabletech/docker-images/pull/1386
4246
[#1387]: https://github.com/stackabletech/docker-images/pull/1387
47+
[#1388]: https://github.com/stackabletech/docker-images/pull/1388
4348

4449
## [25.11.0] - 2025-11-07
4550

testing-tools/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ microdnf install \
6363
curl \
6464
tar \
6565
zip \
66-
unzip
66+
unzip \
67+
`# Required to do test assertions of files` \
68+
diffutils
6769

6870
microdnf clean all
6971
rm -rf /var/cache/yum

testing-tools/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# Beautiful Soup pulls data out of HTML.
33
beautifulsoup4==4.14.2
44
requests==2.32.5
5+
# Needed to run Python tests
6+
pytest==9.0.2
57

68
# Packages that were previously installed as system packages
79
certifi==2025.11.12

0 commit comments

Comments
 (0)