Skip to content

Commit

Permalink
Skip test using py310+ anext function
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarbuzzi committed May 23, 2024
1 parent d519000 commit 21e80b6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/async_engine/test_merge_async_iterators.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
import asyncio
# UPSTREAM SYNC
import sys
from typing import AsyncIterator, Tuple

import pytest

from vllm.utils import merge_async_iterators


# UPSTREAM SYNC
@pytest.mark.skipif(sys.version_info < (3, 10),
reason="`anext` requires Python 3.10")
@pytest.mark.asyncio
async def test_merge_async_iterators():

Expand Down

0 comments on commit 21e80b6

Please sign in to comment.