diff --git a/.clang-format-ignore b/.clang-format-ignore deleted file mode 100644 index 15c76cc45..000000000 --- a/.clang-format-ignore +++ /dev/null @@ -1 +0,0 @@ -sgl-kernel/3rdparty/tensorrt_llm/* diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 8cc641b43..1532fb317 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -709,7 +709,7 @@ jobs: fail-fast: false max-parallel: ${{ fromJson(needs.check-changes.outputs.max_parallel) }} matrix: - part: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] + part: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] steps: - name: Checkout code uses: actions/checkout@v4 @@ -734,7 +734,7 @@ jobs: if [[ "${{ needs.check-changes.outputs.enable_retry }}" == "true" ]]; then RETRY_FLAG="--enable-retry" fi - python3 run_suite.py --suite per-commit-1-gpu --auto-partition-id ${{ matrix.part }} --auto-partition-size 15 $RETRY_FLAG + python3 run_suite.py --suite per-commit-1-gpu --auto-partition-id ${{ matrix.part }} --auto-partition-size 13 $RETRY_FLAG stage-b-test-4-gpu-b200: diff --git a/.github/workflows/release-fake-tag.yml b/.github/workflows/release-tag.yml similarity index 97% rename from .github/workflows/release-fake-tag.yml rename to .github/workflows/release-tag.yml index d1acc6bf4..091e03c6c 100644 --- a/.github/workflows/release-fake-tag.yml +++ b/.github/workflows/release-tag.yml @@ -1,4 +1,4 @@ -name: Release Fake Tag +name: Release Tag on: push: branches: diff --git a/scripts/code_sync/copy_from_oss.py b/scripts/code_sync/copy_from_oss.py index 7517dff99..a9c5a0bdd 100644 --- a/scripts/code_sync/copy_from_oss.py +++ b/scripts/code_sync/copy_from_oss.py @@ -51,10 +51,10 @@ folder_names = [ "python/sglang/README.md", "sgl-kernel", "test/manual", - "test/nightly", "test/registered", "test/srt", "test/README.md", + "test/run_suite.py", "README.md", ] diff --git a/scripts/code_sync/copy_to_oss.py b/scripts/code_sync/copy_to_oss.py index 74d3a66c6..e8c9dc8e0 100644 --- a/scripts/code_sync/copy_to_oss.py +++ b/scripts/code_sync/copy_to_oss.py @@ -51,10 +51,10 @@ folder_names = [ "python/sglang/README.md", "sgl-kernel", "test/manual", - "test/nightly", "test/registered", "test/srt", "test/README.md", + "test/run_suite.py", "README.md", ] diff --git a/test/registered/test_srt_backend.py b/test/registered/test_srt_backend.py index f3ad67cf4..0768e7190 100644 --- a/test/registered/test_srt_backend.py +++ b/test/registered/test_srt_backend.py @@ -49,6 +49,7 @@ class TestSRTBackend(CustomTestCase): def test_decode_int(self): test_decode_int() + @unittest.skip("Skip this flaky test.") def test_decode_json_regex(self): test_decode_json_regex()