Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update comment
  • Loading branch information
mrodm committed Jul 23, 2025
commit ccd81541c68b206b808a3ca7241cb2342da8ed65
4 changes: 1 addition & 3 deletions scripts/test-check-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,8 @@ for d in test/packages/${PACKAGE_TEST_TYPE:-other}/${PACKAGE_UNDER_TEST:-*}/; do
package_to_test=$(basename "${d}")

if [ "${PACKAGE_TEST_TYPE:-other}" == "benchmarks" ]; then
# FIXME: There are other packages in test/packages/benchmarks folder that are not tested like
# use_pipeline_steps and rally_benchmark
# FIXME: There are other packages in test/packages/benchmarks folder that are not tested like rally_benchmark
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rally_benchmark package is located in test/packages/benchmarks folder but it is not tested at all.
I don't know if this could be tested as it is here. IIUC according to the docs it is required also esrally tool.


# It is not used PACKAGE_UNDER_TEST, so all benchmark packages are run in the same loop
if [[ "${package_to_test}" == "pipeline_benchmark" || "${package_to_test}" == "use_pipeline_tests" ]]; then
run_pipeline_benchmark "${package_to_test}" "$d"
elif [ "${package_to_test}" == "system_benchmark" ]; then
Expand Down