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):
154
154
def generate_wheel_fixture (package ):
155
155
@pytest .fixture (scope = 'session' )
156
156
def fixture (tmp_path_session ):
157
- with chdir (package_dir / package ), in_git_repo_context () :
157
+ with chdir (package_dir / package ):
158
158
return tmp_path_session / mesonpy .build_wheel (tmp_path_session )
159
159
return fixture
160
160
@@ -163,7 +163,7 @@ def generate_editable_fixture(package):
163
163
@pytest .fixture (scope = 'session' )
164
164
def fixture (tmp_path_session ):
165
165
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 ):
167
167
return tmp_path_session / mesonpy .build_editable (tmp_path_session )
168
168
return fixture
169
169
You can’t perform that action at this time.
0 commit comments