From 0959094152100497c90808690bb0c0417bc5a7e3 Mon Sep 17 00:00:00 2001 From: shenyushi Date: Tue, 29 Oct 2024 12:42:34 +0800 Subject: [PATCH] Fix. --- .github/workflows/slow_test.yml | 1 + .github/workflows/tests.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/slow_test.yml b/.github/workflows/slow_test.yml index 95e5b7e985..b9186e277a 100644 --- a/.github/workflows/slow_test.yml +++ b/.github/workflows/slow_test.yml @@ -76,6 +76,7 @@ jobs: id: run_cluster_test run: | sudo docker exec ${BUILDER_CONTAINER} bash -c "cd /infinity/ && rm -fr /var/infinity && LD_PRELOAD=/usr/local/lib/clang/18/lib/x86_64-unknown-linux-gnu/libclang_rt.asan.so ASAN_OPTIONS=detect_leaks=0 python3 tools/run_cluster_test.py --infinity_path=cmake-build-release/src/infinity" + pip3 install pytest sudo python3 tools/run_cluster_test.py --infinity_path=cmake-build-release/src/infinity --docker - name: Collect cluster test output diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cdb759e83e..c47caf4b9e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -75,6 +75,7 @@ jobs: id: run_cluster_test run: | sudo docker exec ${BUILDER_CONTAINER} bash -c "cd /infinity/ && rm -fr /var/infinity && LD_PRELOAD=/usr/local/lib/clang/18/lib/x86_64-unknown-linux-gnu/libclang_rt.asan.so ASAN_OPTIONS=detect_leaks=0 python3 tools/run_cluster_test.py --infinity_path=cmake-build-debug/src/infinity" + pip3 install pytest sudo python3 tools/run_cluster_test.py --infinity_path=cmake-build-debug/src/infinity --docker - name: Collect cluster test output @@ -250,6 +251,7 @@ jobs: id: run_cluster_test run: sudo docker exec ${BUILDER_CONTAINER} bash -c "cd /infinity/ && rm -fr /var/infinity && LD_PRELOAD=/usr/local/lib/clang/18/lib/x86_64-unknown-linux-gnu/libclang_rt.asan.so ASAN_OPTIONS=detect_leaks=0 python3 tools/run_cluster_test.py --infinity_path=cmake-build-release/src/infinity" + pip3 install pytest sudo python3 tools/run_cluster_test.py --infinity_path=cmake-build-release/src/infinity --docker - name: Collect cluster test output