File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ def fixture(tmp_path_session):
154154def generate_wheel_fixture (package ):
155155 @pytest .fixture (scope = 'session' )
156156 def fixture (tmp_path_session ):
157- with chdir (package_dir / package ), in_git_repo_context () :
157+ with chdir (package_dir / package ):
158158 return tmp_path_session / mesonpy .build_wheel (tmp_path_session )
159159 return fixture
160160
@@ -163,7 +163,7 @@ def generate_editable_fixture(package):
163163 @pytest .fixture (scope = 'session' )
164164 def fixture (tmp_path_session ):
165165 shutil .rmtree (package_dir / package / '.mesonpy' / 'editable' , ignore_errors = True )
166- with chdir (package_dir / package ), in_git_repo_context () :
166+ with chdir (package_dir / package ):
167167 return tmp_path_session / mesonpy .build_editable (tmp_path_session )
168168 return fixture
169169
You can’t perform that action at this time.
0 commit comments