12345678910111213141516171819202122232425 |
- import tempfile
- from testing_utils import CpuCommonTest, run_script
- class TestMatch(CpuCommonTest):
- def test_script(self):
- with tempfile.TemporaryDirectory() as td:
- run_script(
- f"python match.py --im1_path ../tests/data/ssmt/multispectral_t1.tif --im2_path ../tests/data/ssmt/multispectral_t1.tif --save_path {td}/out.tiff",
- wd="../tools")
|