mirror of
https://gitee.com/fastnlp/fastNLP.git
synced 2024-12-05 05:38:31 +08:00
16 lines
568 B
Python
16 lines
568 B
Python
import pytest
|
|
from fastNLP.envs.imports import _module_available
|
|
from fastNLP.core.utils import f_tqdm_progress, f_rich_progress
|
|
|
|
def test_raise():
|
|
if not _module_available('tqdm') or f_rich_progress.dummy or f_tqdm_progress.dummy:
|
|
pytest.skip('No tqdm')
|
|
t = f_rich_progress.add_task('test', total=10)
|
|
with pytest.raises(AssertionError):
|
|
f_tqdm_progress.add_task('test')
|
|
|
|
f_rich_progress.destroy_task(t)
|
|
|
|
t = f_tqdm_progress.add_task('test', total=10)
|
|
with pytest.raises(AssertionError):
|
|
f_rich_progress.add_task('test') |