File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 99chmod +x ./run_all_tests.py
1010
1111echo ' Running run_all_tests.py script for remote C++ tests (-t=ru)'
12- python ./run_all_tests.py -t=ru -u ${AWS_ACCESS_KEY_ID} -p ${AWS_SECRET_ACCESS_KEY}
12+ python ./run_all_tests.py -t=ru -k - u ${AWS_ACCESS_KEY_ID} -p ${AWS_SECRET_ACCESS_KEY}
1313
1414echo ' Running run_all_tests script for C++ tests (-t=ut)'
1515python ./run_all_tests.py -t=ut -k
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ if [ -f './.coverage' ]; then
1212fi
1313
1414echo ' Running run_all_tests script for Python tests (-t=pt)'
15- python3 ./run_all_tests.py -t=pt
15+ python3 ./run_all_tests.py -t=pt -k
1616
1717echo ' Running run_all_tests script for Remote Python tests (-t=rp)'
18- python3 ./run_all_tests.py -t=rp -u=${AWS_ACCESS_KEY_ID} -p=${AWS_SECRET_ACCESS_KEY}
18+ python3 ./run_all_tests.py -t=rp -k - u=${AWS_ACCESS_KEY_ID} -p=${AWS_SECRET_ACCESS_KEY}
1919
2020echo ' Running the tests included in TestScript.py file'
2121# Append the coverage results to the ones obtained from running run_all_tests.py
Original file line number Diff line number Diff line change @@ -285,10 +285,10 @@ jobs:
285285 if : ${{ always() }}
286286 run : |
287287 echo "Print all the logs" >> $GITHUB_OUTPUT
288- mkdir ${{ env.SOURCE_CONTAINER_NAME }}_logs || true
289- docker cp ${{ env.SOURCE_CONTAINER_NAME }}:/vdms/tests/tests_output_dir/*.logs ${{ env.SOURCE_CONTAINER_NAME }}_logs || true
290- cat ${{ env.SOURCE_CONTAINER_NAME }}_logs/*.log >> $GITHUB_OUTPUT
291- rm -rf ${{ env.SOURCE_CONTAINER_NAME }}_logs
288+ mkdir -p ${GITHUB_WORKSPACE}/ ${{ env.SOURCE_CONTAINER_NAME }}_logs || true
289+ docker cp ${{ env.SOURCE_CONTAINER_NAME }}:/vdms/tests/tests_output_dir/*.log ${GITHUB_WORKSPACE}/ ${{ env.SOURCE_CONTAINER_NAME }}_logs || true
290+ cat ${GITHUB_WORKSPACE}/${ { env.SOURCE_CONTAINER_NAME }}_logs/*.log >> $GITHUB_OUTPUT
291+ rm -rf ${GITHUB_WORKSPACE}/${{ env.SOURCE_CONTAINER_NAME }}_logs || true
292292 docker kill ${{ env.SOURCE_CONTAINER_NAME }} || true
293293 docker kill ${{ env.SOURCE_CONTAINER_NAME }}_tmp || true
294294 docker kill ${{ env.NEO4J_CONTAINER_NAME }} || true
You can’t perform that action at this time.
0 commit comments