mirror of
https://github.com/facefusion/facefusion.git
synced 2026-06-08 13:43:52 +02:00
76c413a2c1
* remove ffmpeg from stream to use opus and vpx, add bunch of todos * fix testing * improve download checkout * fix datachannel download, fix super dirty test clients - setup logic does not belong there * fix testing
19 lines
406 B
Python
19 lines
406 B
Python
import pytest
|
|
|
|
from facefusion.libraries import datachannel as datachannel_module
|
|
|
|
|
|
@pytest.fixture(scope = 'module')
|
|
def before_all() -> None:
|
|
datachannel_module.pre_check()
|
|
|
|
|
|
# TODO: test create_rtc_stream, get_rtc_stream, destroy_rtc_stream lifecycle
|
|
def test_rtc_stream_lifecycle() -> None:
|
|
pass
|
|
|
|
|
|
# TODO: test add_rtc_viewer with valid session and sdp offer
|
|
def test_add_rtc_viewer() -> None:
|
|
pass
|