Unverified Commit 051f18a4 authored by Jacky's avatar Jacky Committed by GitHub
Browse files

chore: Increase E2E 1-GPU Test Timeout (#5888)


Signed-off-by: default avatarJacky <18255193+kthui@users.noreply.github.com>
parent 94d82a48
...@@ -122,7 +122,7 @@ runs: ...@@ -122,7 +122,7 @@ runs:
echo "🔍 Mypy type checking enabled" echo "🔍 Mypy type checking enabled"
MYPY_FLAG="--mypy" MYPY_FLAG="--mypy"
fi fi
PYTEST_CMD="pytest --continue-on-collection-errors -v --tb=short --basetemp=/tmp -o cache_dir=/tmp/.pytest_cache --junitxml=/workspace/test-results/${{ env.PYTEST_XML_FILE }} --durations=10 ${MYPY_FLAG} -m \"${{ inputs.pytest_marks }}\"" PYTEST_CMD="pytest --continue-on-collection-errors -v --tb=short --basetemp=/tmp -o cache_dir=/tmp/.pytest_cache --junitxml=/workspace/test-results/${{ env.PYTEST_XML_FILE }} --durations=20 ${MYPY_FLAG} -m \"${{ inputs.pytest_marks }}\""
# Detect GPU availability and conditionally add GPU flags # Detect GPU availability and conditionally add GPU flags
GPU_FLAGS="" GPU_FLAGS=""
......
...@@ -569,10 +569,10 @@ jobs: ...@@ -569,10 +569,10 @@ jobs:
arch: arch:
- arch: amd64 - arch: amd64
runner: prod-builder-amd-gpu-v1 runner: prod-builder-amd-gpu-v1
timeout: 120 timeout: 180
- arch: arm64 - arch: arm64
runner: prod-builder-arm-v1 runner: prod-builder-arm-v1
timeout: 120 timeout: 180
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
......
...@@ -34,7 +34,6 @@ pytestmark = [ ...@@ -34,7 +34,6 @@ pytestmark = [
pytest.mark.trtllm, pytest.mark.trtllm,
pytest.mark.gpu_1, pytest.mark.gpu_1,
pytest.mark.e2e, pytest.mark.e2e,
pytest.mark.post_merge,
pytest.mark.model(FAULT_TOLERANCE_MODEL_NAME), pytest.mark.model(FAULT_TOLERANCE_MODEL_NAME),
pytest.mark.post_merge, # post_merge to pinpoint failure commit pytest.mark.post_merge, # post_merge to pinpoint failure commit
pytest.mark.parametrize("request_plane", ["nats", "tcp"], indirect=True), pytest.mark.parametrize("request_plane", ["nats", "tcp"], indirect=True),
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment