8000 Only fake git configuration when necessary · GiTechLab/libgit2sharp@6892a94 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6892a94

Browse files
committed
Only fake git configuration when necessary
1 parent 2f1c52f commit 6892a94

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

LibGit2Sharp.Tests/FetchFixture.cs

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ public class FetchFixture : BaseFixture
1616
[InlineData("git://github.com/libgit2/TestGitRepository.git")]
1717
public void CanFetchIntoAnEmptyRepository(string url)
1818
{
19-
using (var repo = InitIsolatedRepository())
19+
string path = InitNewRepository();
20+
21+
using (var repo = new Repository(path))
2022
{
2123
Remote remote = repo.Network.Remotes.Add(remoteName, url);
2224

@@ -53,7 +55,9 @@ public void CanFetchIntoAnEmptyRepositoryWithCredentials()
5355
InconclusiveIf(() => string.IsNullOrEmpty(Constants.PrivateRepoUrl),
5456
"Populate Constants.PrivateRepo* to run this test");
5557

56-
using (var repo = InitIsolatedRepository())
58+
string path = InitNewRepository();
59+
60+
using (var repo = new Repository(path))
5761
{
5862
Remote remote = repo.Network.Remotes.Add(remoteName, Constants.PrivateRepoUrl);
5963

@@ -71,7 +75,9 @@ public void CanFetchIntoAnEmptyRepositoryWithCredentials()
7175
[InlineData("git://github.com/libgit2/TestGitRepository.git")]
7276
public void CanFetchAllTagsIntoAnEmptyRepository(string url)
7377
{
74-
using (var repo = InitIsolatedRepository())
78+
string path = InitNewRepository();
79+
80+
using (var repo = new Repository(path))
7581
{
7682
Remote remote = repo.Network.Remotes.Add(remoteName, url);
7783

@@ -112,7 +118,9 @@ public void CanFetchAllTagsIntoAnEmptyRepository(string url)
112118
[InlineData("git://github.com/libgit2/TestGitRepository.git", "master", "first-merge")]
113119
public void CanFetchCustomRefSpecsIntoAnEmptyRepository(string url, string localBranchName, string remoteBranchName)
114120
{
115-
using (var repo = InitIsolatedRepository())
121+
string path = InitNewRepository();
122+
123+
using (var repo = new Repository(path))
116124
{
117125
Remote remote = repo.Network.Remotes.Add(remoteName, url);
118126

@@ -147,7 +155,9 @@ public void FetchRespectsConfiguredAutoTagSetting(TagFetchMode tagFetchMode, int
147155
{
148156
string url = "http://github.com/libgit2/TestGitRepository";
149157

150-
using (var repo = InitIsolatedRepository())
158+
string path = InitNewRepository();
159+
160+
using (var repo = new Repository(path))
151161
{
152162
Remote remote = repo.Network.Remotes.Add(remoteName, url);
153163
Assert.NotNull(remote);

0 commit comments

Comments
 (0)
0