File tree 1 file changed +7
-15
lines changed
1 file changed +7
-15
lines changed Original file line number Diff line number Diff line change 10
10
import os
11
11
from collections .abc import Iterator
12
12
from difflib import unified_diff
13
+ from pathlib import Path
13
14
from unittest .mock import Mock
14
15
15
16
import pytest
17
+ from pytest import MonkeyPatch
16
18
17
19
from pylint .pyreverse .diadefslib import DefaultDiadefGenerator , DiadefsHandler
18
20
from pylint .pyreverse .inspector import Linker , Project
@@ -71,6 +73,11 @@ def _file_lines(path: str) -> list[str]:
71
73
return [line for line in lines if line ]
72
74
73
75
76
+ @pytest .fixture (autouse = True )
77
+ def change_to_temp_dir (monkeypatch : MonkeyPatch , tmp_path : Path ) -> None :
78
+ monkeypatch .chdir (tmp_path )
79
+
80
+
74
81
@pytest .fixture ()
75
82
def setup_dot (
76
83
default_config : PyreverseConfig , get_project : GetProjectCallable
@@ -146,19 +153,6 @@ def _setup(
146
153
diagram .extract_relationships ()
147
154
writer .write (dd )
148
155
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
162
156
163
157
164
158
@pytest .mark .usefixtures ("setup_dot" )
@@ -240,5 +234,3 @@ def test_package_name_with_slash(default_config: PyreverseConfig) -> None:
240
234
writer .write ([obj ])
241
235
242
236
assert os .path .exists ("test_package_name_with_slash_.dot" )
243
- # remove the generated file
244
- os .remove ("test_package_name_with_slash_.dot" )
You can’t perform that action at this time.
0 commit comments