mirror of
https://github.com/remsky/Kokoro-FastAPI.git
synced 2025-04-13 09:39:17 +00:00
9 lines
170 B
Python
9 lines
170 B
Python
import pytest
|
|
import gradio as gr
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_gr_context():
|
|
"""Provides a context for testing Gradio components"""
|
|
with gr.Blocks():
|
|
yield
|