mim/tests/test_run.py

60 lines
1.8 KiB
Python
Raw Normal View History

2022-02-23 22:20:01 +08:00
# Copyright (c) OpenMMLab. All rights reserved.
import pytest
import torch
2021-05-20 00:03:43 +08:00
from click.testing import CliRunner
from mim.commands.install import cli as install
from mim.commands.run import cli as run
from mim.commands.uninstall import cli as uninstall
2021-05-20 00:03:43 +08:00
def setup_module():
runner = CliRunner()
result = runner.invoke(uninstall, ['mmcv-full', '--yes'])
assert result.exit_code == 0
result = runner.invoke(uninstall, ['mmcls', '--yes'])
assert result.exit_code == 0
2021-05-20 00:03:43 +08:00
@pytest.mark.parametrize('device,gpus', [
('cpu', 0),
pytest.param(
'cuda',
1,
marks=pytest.mark.skipif(
not torch.cuda.is_available(), reason='requires CUDA support')),
])
def test_run(device, gpus, tmp_path):
2021-05-20 00:03:43 +08:00
runner = CliRunner()
result = runner.invoke(install, ['mmcls', '--yes'])
assert result.exit_code == 0
2021-05-20 00:03:43 +08:00
result = runner.invoke(run, [
'mmcls', 'train', 'tests/data/lenet5_mnist.py', f'--gpus={gpus}',
f'--work-dir={tmp_path}'
])
2021-05-24 22:23:45 +08:00
assert result.exit_code == 0
result = runner.invoke(run, [
'mmcls', 'test', 'tests/data/lenet5_mnist.py',
'tests/data/epoch_1.pth', f'--device={device}', '--metrics=accuracy'
2021-05-24 22:23:45 +08:00
])
assert result.exit_code == 0
result = runner.invoke(run, [
'mmcls', 'xxx', 'tests/data/lenet5_mnist.py', 'tests/data/epoch_1.pth',
f'--gpus={gpus}', '--metrics=accuracy'
2021-05-24 22:23:45 +08:00
])
assert result.exit_code != 0
result = runner.invoke(run, [
'mmcls', 'test', 'tests/data/xxx.py', 'tests/data/epoch_1.pth',
f'--device={device}', '--metrics=accuracy'
2021-05-24 22:23:45 +08:00
])
assert result.exit_code != 0
def teardown_module():
runner = CliRunner()
result = runner.invoke(uninstall, ['mmcv-full', '--yes'])
assert result.exit_code == 0
result = runner.invoke(uninstall, ['mmcls', '--yes'])
assert result.exit_code == 0