We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8710dc7 commit 41eb25fCopy full SHA for 41eb25f
label_studio_ml/examples/deepgram/test_model.py
@@ -192,6 +192,8 @@ def test_setup_in_test_mode_uses_stub_clients(monkeypatch):
192
Checks : ensure real Deepgram constructor is not called and stub clients exist with defaults.
193
"""
194
monkeypatch.setenv('TEST_ENV', '1')
195
+ monkeypatch.setenv('S3_BUCKET', 'test-bucket')
196
+ monkeypatch.setenv('S3_FOLDER', 'tts')
197
ctor = MagicMock()
198
monkeypatch.setattr(deepgram_module, 'DeepgramClient', ctor)
199
0 commit comments