Skip to content

Commit 24d5213

Browse files
authored
[CI] Rename tests/ce to tests/ci_validation to avoid CE naming confusion (#7733)
1 parent 8396ef6 commit 24d5213

41 files changed

Lines changed: 11 additions & 510 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/_accuracy_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ jobs:
196196
197197
git config --global --add safe.directory /workspace/FastDeploy
198198
cd FastDeploy
199-
pushd tests/ce/deploy
199+
pushd tests/ci_validation/deploy
200200
ps -ef | grep "${FD_CACHE_QUEUE_PORT}" | grep -v grep | awk "{print \$2}" | xargs -r kill -9
201201
ps -ef | grep "${FD_ENGINE_QUEUE_PORT}" | grep -v grep | awk "{print \$2}" | xargs -r kill -9
202202
python3.10 deploy.py > dd.log 2>&1 &
@@ -208,7 +208,7 @@ jobs:
208208
curl -X POST http://localhost:${FLASK_PORT}/wait_for_infer?timeout=90
209209
popd
210210
211-
pushd tests/ce/accuracy_cases
211+
pushd tests/ci_validation/accuracy_cases
212212
export URL=http://localhost:${FD_API_PORT}/v1/chat/completions
213213
export TEMPLATE=TOKEN_LOGPROB
214214
export MODEL_SIZE=0.3B

.github/workflows/_base_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
230230
git config --global --add safe.directory /workspace/FastDeploy
231231
cd FastDeploy
232-
pushd tests/ce/deploy
232+
pushd tests/ci_validation/deploy
233233
ps -ef | grep "${FD_CACHE_QUEUE_PORT}" | grep -v grep | awk "{print \$2}" | xargs -r kill -9
234234
ps -ef | grep "${FD_ENGINE_QUEUE_PORT}" | grep -v grep | awk "{print \$2}" | xargs -r kill -9
235235
python3.10 deploy.py > dd.log 2>&1 &
@@ -253,7 +253,7 @@ jobs:
253253
check_service 90
254254
popd
255255
256-
pushd tests/ce/server
256+
pushd tests/ci_validation/server
257257
export URL=http://localhost:${FD_API_PORT}/v1/chat/completions
258258
export TEMPLATE=TOKEN_LOGPROB
259259
TEST_EXIT_CODE=0

.github/workflows/_stable_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
git config --global --add safe.directory /workspace/FastDeploy
204204
cd FastDeploy
205205
TEST_EXIT_CODE=0
206-
pushd tests/ce/stable_cases
206+
pushd tests/ci_validation/stable_cases
207207
bash launch_model.sh /MODELDATA
208208
209209
TEST_EXIT_CODE=0

docs/usage/code_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ tests/
330330
├── quantization/ # Quantization tests
331331
├── multimodal/ # Multimodal tests
332332
├── xpu_ci/ # XPU CI tests
333-
├── ce/ # CE environment tests
333+
├── ci_validation/ # CI validation tests
334334
├── ci_use/ # CI utility tests
335335
└── conftest.py # pytest configuration
336336
```

docs/zh/usage/code_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ tests/
330330
├── quantization/ # 量化测试
331331
├── multimodal/ # 多模态测试
332332
├── xpu_ci/ # XPU CI 测试
333-
├── ce/ # CE 环境测试
333+
├── ci_validation/ # CI 验证测试
334334
├── ci_use/ # CI 工具测试
335335
└── conftest.py # pytest 配置
336336
```

examples/intel_hpu/intel_hpu_serving_benchmark.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The script will save the model execution times and batch tokens as a CSV file an
5555
Accuracy testing uses GSM8K. Use the following conversion to generate the test file.
5656
```python
5757
>>> import pandas as pd
58-
>>> df = pd.read_parquet('tests/ce/accuracy_cases/gsm8k.parquet', engine='pyarrow')
58+
>>> df = pd.read_parquet('tests/ci_validation/accuracy_cases/gsm8k.parquet', engine='pyarrow')
5959
>>> df.to_json('test.jsonl', orient='records', lines=True)
6060
```
6161
Run the following command to perform the accuracy test.

tests/ce/deterministic/start_fd.sh

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)