diff options
Diffstat (limited to 'etc/unittest')
-rw-r--r-- | etc/unittest/main.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/unittest/main.py b/etc/unittest/main.py index 5a220323..9b9ca011 100644 --- a/etc/unittest/main.py +++ b/etc/unittest/main.py @@ -6,14 +6,14 @@ from g4f import ChatCompletion, get_last_provider from g4f.Provider import RetryProvider from .mocks import ProviderMock -class TestChatCompletion(unittest.TestCase): +class NoTestChatCompletion(unittest.TestCase): - def test_create_default(self): + def no_test_create_default(self): result = ChatCompletion.create(g4f.models.default, DEFAULT_MESSAGES) if "Good" not in result and "Hi" not in result: self.assertIn("Hello", result) - def test_bing_provider(self): + def no_test_bing_provider(self): provider = g4f.Provider.Bing result = ChatCompletion.create(g4f.models.default, DEFAULT_MESSAGES, provider) self.assertIn("Bing", result) |