Skip to content

Commit f484c6a

Browse files
authored
Merge pull request #7632 from TCeason/ISSUE-7630
ci: List used python packages
2 parents aad04ab + eb13cf7 commit f484c6a

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

scripts/ci/ci-run-sqllogic-tests-cluster.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ if [ $# -gt 0 ]; then
1515
fi
1616
echo "Run suites using argument: $RUN_DIR"
1717

18+
echo "pip list"
19+
python3 -m pip list
20+
1821
echo "Starting databend-sqllogic tests"
1922
python3 main.py $RUN_DIR
2023

scripts/ci/ci-run-sqllogic-tests.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ if [ $# -gt 0 ]; then
1515
fi
1616
echo "Run suites using argument: $RUN_DIR"
1717

18+
echo "pip list"
19+
python3 -m pip list
20+
1821
echo "Starting databend-sqllogic tests"
1922
python3 main.py --skip-dir=mode $RUN_DIR
2023

tests/compat/test-compat.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,9 @@ find_binary_path()
154154

155155
# Test specified version of query and meta
156156
run_test() {
157+
echo " === pip list"
158+
python3 -m pip list
159+
157160
local query_ver="$1"
158161
local metasrv_ver="$2"
159162

tests/fuse-compat/test-fuse-compat.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@ kill_proc() {
125125
# Test fuse-data compatibility between an old version query and the current
126126
# version query.
127127
run_test() {
128+
echo " === pip list"
129+
python3 -m pip list
130+
128131
local query_old_ver="$1"
129132

130133
echo " === Test with query-$query_old_ver and current query"

0 commit comments

Comments
 (0)