Spaces:
NSOUP
/
No application file

facefusion / tests /test_process_manager.py
seitoku's picture
Upload folder using huggingface_hub
f6c9b39 verified
raw
history blame
386 Bytes
from facefusion.process_manager import set_process_state, is_processing, is_stopping, is_pending, start, stop, end
def test_start() -> None:
set_process_state('pending')
start()
assert is_processing()
def test_stop() -> None:
set_process_state('processing')
stop()
assert is_stopping()
def test_end() -> None:
set_process_state('processing')
end()
assert is_pending()