mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-09 04:56:29 +00:00
do not auto-merge the deployment tests, as things break
This commit is contained in:
@@ -55,7 +55,7 @@ public class DeploymentsClientTests : IDisposable
|
||||
[IntegrationTest]
|
||||
public async Task CanCreateDeployment()
|
||||
{
|
||||
var newDeployment = new NewDeployment { Ref = _commit.Sha };
|
||||
var newDeployment = new NewDeployment { Ref = _commit.Sha, AutoMerge = false };
|
||||
|
||||
var deployment = await _deploymentsClient.Create(_repositoryOwner, _repository.Name, newDeployment);
|
||||
|
||||
@@ -65,7 +65,7 @@ public class DeploymentsClientTests : IDisposable
|
||||
[IntegrationTest]
|
||||
public async Task CanGetDeployments()
|
||||
{
|
||||
var newDeployment = new NewDeployment { Ref = _commit.Sha };
|
||||
var newDeployment = new NewDeployment { Ref = _commit.Sha, AutoMerge = false };
|
||||
await _deploymentsClient.Create(_repositoryOwner, _repository.Name, newDeployment);
|
||||
|
||||
var deployments = await _deploymentsClient.GetAll(_repositoryOwner, _repository.Name);
|
||||
|
||||
Reference in New Issue
Block a user