Skip to content

Commit 3163699

Browse files
committed
remove cleaning up in clone fixture
1 parent 72f2b65 commit 3163699

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

test/conftest.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@ def xtl_clone(git2cpp_path, tmp_path, run_in_tmp_path):
2222
clone_cmd = [git2cpp_path, 'clone', url]
2323
subprocess.run(clone_cmd, capture_output=True, cwd = tmp_path, text=True)
2424

25-
# remove what's following ?
26-
yield
27-
28-
cleanup_cmd = ['rm', '-rf', 'xtl']
29-
subprocess.run(cleanup_cmd, capture_output=True, cwd = tmp_path, text=True)
30-
3125
@pytest.fixture
3226
def git_config(monkeypatch):
3327
monkeypatch.setenv("GIT_AUTHOR_NAME", "Jane Doe")

0 commit comments

Comments
 (0)