Skip to content

Commit

Permalink
Skip test on python 3.9 or lower
Browse files Browse the repository at this point in the history
  • Loading branch information
nagkumar91 committed Apr 23, 2024
1 parent d99cb39 commit 746aa0a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# flake8: noqa
import asyncio
import sys

import pytest

Expand All @@ -10,6 +11,9 @@
@pytest.mark.usefixtures("model_config", "recording_injection")
@pytest.mark.e2etest
class TestNonAdvSimulator:
@pytest.mark.skipif(
sys.version_info < (3, 10), reason="improvements and changes in the asynchronous event loop handling."
)
def test_non_adv_conversation(self, model_config):
from openai import AsyncAzureOpenAI

Expand Down

0 comments on commit 746aa0a

Please sign in to comment.