Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .github/workflows/_base_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ jobs:
git config --global --add safe.directory /workspace/FastDeploy
cd FastDeploy
pushd tests/ce/deploy
ps -ef | grep "${FD_CACHE_QUEUE_PORT}" | grep -v grep | awk "{print \$2}" | xargs -r kill -9
ps -ef | grep "${FD_ENGINE_QUEUE_PORT}" | grep -v grep | awk "{print \$2}" | xargs -r kill -9
python3.10 deploy.py > dd.log 2>&1 &
sleep 3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/_logprob_test_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ jobs:
--skip install

cd PaddleTest/framework/ServeTest
ps -ef | grep "${FD_CACHE_QUEUE_PORT}" | grep -v grep | awk "{print \$2}" | xargs -r kill -9
ps -ef | grep "${FD_ENGINE_QUEUE_PORT}" | grep -v grep | awk "{print \$2}" | xargs -r kill -9
python3.10 deploy.py > dd.log 2>&1 &
sleep 3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/_unit_test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ jobs:
needs: run_tests_with_coverage
if: always()
runs-on: ubuntu-latest
timeout-minutes: 15
env:
fd_archive_url: ${{ inputs.FASTDEPLOY_ARCHIVE_URL }}
steps:
Expand Down
1 change: 1 addition & 0 deletions scripts/coverage_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ for file in $TEST_FILES; do
success_pytest=$((success_pytest+1))
fi
ps -ef | grep "${FD_CACHE_QUEUE_PORT}" | grep -v grep | awk '{print $2}' | xargs -r kill -9
ps -ef | grep "${FD_ENGINE_QUEUE_PORT}" | grep -v grep | awk '{print $2}' | xargs -r kill -9
done

##################################
Expand Down
1 change: 1 addition & 0 deletions scripts/run_pre_ce.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ for subdir in "$run_path"*/; do
exit_code=$?
set -e
ps -ef | grep "${FD_CACHE_QUEUE_PORT}" | grep -v grep | awk '{print $2}' | xargs -r kill -9
ps -ef | grep "${FD_ENGINE_QUEUE_PORT}" | grep -v grep | awk '{print $2}' | xargs -r kill -9

if [ $exit_code -ne 0 ]; then
if [ -f "${subdir%/}/log/workerlog.0" ]; then
Expand Down
2 changes: 1 addition & 1 deletion tests/ci_use/EB_Lite_with_adapter/zmq_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def consume_results(self, result_queue):
continue
data = frames[-1]
response = msgpack.unpackb(data)
print(f"get result data {response}")
# print(f"get result data {response}")
result_queue.put(response)
if self.need_exit:
break
Expand Down
1 change: 1 addition & 0 deletions tests/e2e/test_EB_Lite_serving.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ def test_streaming(openai_client, capsys):
# ==========================


@pytest.mark.skip(reason="Temporarily skip this case due to unstable execution")
def test_non_streaming_with_stop_str(openai_client):
"""
Test non-streaming chat functionality with the local service
Expand Down
Loading