Skip to content

Commit 0ec3c7f

Browse files
authored
refactor pyreverse tests to use temporary directory (#8529)
1 parent 6ad17fb commit 0ec3c7f

File tree

1 file changed

+7
-15
lines changed

1 file changed

+7
-15
lines changed

tests/pyreverse/test_writer.py

+7-15
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
import os
1111
from collections.abc import Iterator
1212
from difflib import unified_diff
13+
from pathlib import Path
1314
from unittest.mock import Mock
1415

1516
import pytest
17+
from pytest import MonkeyPatch
1618

1719
from pylint.pyreverse.diadefslib import DefaultDiadefGenerator, DiadefsHandler
1820
from pylint.pyreverse.inspector import Linker, Project
@@ -71,6 +73,11 @@ def _file_lines(path: str) -> list[str]:
7173
return [line for line in lines if line]
7274

7375

76+
@pytest.fixture(autouse=True)
77+
def change_to_temp_dir(monkeypatch: MonkeyPatch, tmp_path: Path) -> None:
78+
monkeypatch.chdir(tmp_path)
79+
80+
7481
@pytest.fixture()
7582
def setup_dot(
7683
default_config: PyreverseConfig, get_project: GetProjectCallable
@@ -146,19 +153,6 @@ def _setup(
146153
diagram.extract_relationships()
147154
writer.write(dd)
148155
yield
149-
for fname in (
150-
DOT_FILES
151-
+ COLORIZED_DOT_FILES
152-
+ NO_STANDALONE_FILES
153-
+ PUML_FILES
154-
+ COLORIZED_PUML_FILES
155-
+ MMD_FILES
156-
+ HTML_FILES
157-
):
158-
try:
159-
os.remove(fname)
160-
except FileNotFoundError:
161-
continue
162156

163157

164158
@pytest.mark.usefixtures("setup_dot")
@@ -240,5 +234,3 @@ def test_package_name_with_slash(default_config: PyreverseConfig) -> None:
240234
writer.write([obj])
241235

242236
assert os.path.exists("test_package_name_with_slash_.dot")
243-
# remove the generated file
244-
os.remove("test_package_name_with_slash_.dot")

0 commit comments

Comments
 (0)