diff options
Diffstat (limited to 'etc/unittest')
-rw-r--r-- | etc/unittest/asyncio.py | 4 | ||||
-rw-r--r-- | etc/unittest/integration.py | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/etc/unittest/asyncio.py b/etc/unittest/asyncio.py index 57a1fb7d..8931b79a 100644 --- a/etc/unittest/asyncio.py +++ b/etc/unittest/asyncio.py @@ -19,8 +19,8 @@ class TestChatCompletion(unittest.TestCase): return ChatCompletion.create(g4f.models.default, DEFAULT_MESSAGES, AsyncProviderMock) def test_exception(self): - if hasattr(asyncio, '_nest_patched'): - self.skipTest('asyncio is already patched') + if has_nest_asyncio: + self.skipTest('has nest_asyncio') self.assertRaises(g4f.errors.NestAsyncioError, asyncio.run, self.run_exception()) def test_create(self): diff --git a/etc/unittest/integration.py b/etc/unittest/integration.py index 808a8d1d..36f09c0e 100644 --- a/etc/unittest/integration.py +++ b/etc/unittest/integration.py @@ -1,6 +1,12 @@ import unittest import json +try: + import nest_asyncio + has_nest_asyncio = True +except: + has_nest_asyncio = False + from g4f.client import Client, ChatCompletion from g4f.Provider import Bing, OpenaiChat @@ -8,6 +14,9 @@ DEFAULT_MESSAGES = [{"role": "system", "content": 'Response in json, Example: {" {"role": "user", "content": "Say success true in json"}] class TestProviderIntegration(unittest.TestCase): + def setUp(self): + if not has_nest_asyncio: + self.skipTest("nest_asyncio is not installed") def test_bing(self): client = Client(provider=Bing) |