Swift: fix python compatibility with CI

This commit is contained in:
Paolo Tranquilli 2022-11-18 17:51:20 +01:00
Родитель 6dcdf8c71f
Коммит aaa96b20ed
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -39,9 +39,8 @@ def opts():
@pytest.fixture(autouse=True)
def override_paths(tmp_path):
with (mock.patch("swift.codegen.lib.paths.swift_dir", tmp_path),
mock.patch("swift.codegen.lib.paths.exe_file", tmp_path / "exe"),
):
with mock.patch("swift.codegen.lib.paths.swift_dir", tmp_path), \
mock.patch("swift.codegen.lib.paths.exe_file", tmp_path / "exe"):
yield