mirror of
https://github.com/open-mmlab/mim.git
synced 2025-06-03 14:59:11 +08:00
10 lines
234 B
Python
10 lines
234 B
Python
from mim.commands.list import list_package
|
|
|
|
|
|
def test_list():
|
|
# mim list
|
|
target = ('mmcls', '0.11.0',
|
|
'https://github.com/open-mmlab/mmclassification.git')
|
|
result = list_package()
|
|
assert target in result
|