Skip to content

[#104016000] Removed Profile test from post-checkin job since it requires user int… #1007

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 29, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public class Category
// Run Type
public const string RunType = "RunType";
public const string LiveOnly = "LiveOnly";
public const string Manual = "Manual";
//Uncomment when we need to tag on only run under mock
//public const string MockedOnly = "MockedOnly";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public LoginCmdletTests()
}

[Fact]
[Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.AcceptanceType, Category.Manual)]
public void LoginWithSubscriptionAndTenant()
{
var cmdlt = new AddAzureRMAccountCommand();
Expand All @@ -61,7 +61,7 @@ public void LoginWithSubscriptionAndTenant()
}

[Fact]
[Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.AcceptanceType, Category.Manual)]
public void LoginWithInvalidSubscriptionAndTenantThrowsCloudException()
{
var cmdlt = new AddAzureRMAccountCommand();
Expand All @@ -77,7 +77,7 @@ public void LoginWithInvalidSubscriptionAndTenantThrowsCloudException()
}

[Fact]
[Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.AcceptanceType, Category.Manual)]
public void LoginWithSubscriptionAndNoTenant()
{
var cmdlt = new AddAzureRMAccountCommand();
Expand All @@ -95,7 +95,7 @@ public void LoginWithSubscriptionAndNoTenant()
}

[Fact]
[Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.AcceptanceType, Category.Manual)]
public void LoginWithNoSubscriptionAndNoTenant()
{
var cmdlt = new AddAzureRMAccountCommand();
Expand All @@ -112,7 +112,7 @@ public void LoginWithNoSubscriptionAndNoTenant()
}

[Fact]
[Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.AcceptanceType, Category.Manual)]
public void LoginWithNoSubscriptionAndTenant()
{
var cmdlt = new AddAzureRMAccountCommand();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public TenantCmdletTests()
}

[Fact]
[Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.AcceptanceType, Category.Manual)]
public void GetTenantWithTenantParameter()
{
var cmdlt = new GetAzureRMTenantCommand();
Expand All @@ -62,7 +62,7 @@ public void GetTenantWithTenantParameter()
}

[Fact]
[Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.AcceptanceType, Category.Manual)]
public void GetTenantWithDomainParameter()
{
var cmdlt = new GetAzureRMTenantCommand();
Expand All @@ -82,7 +82,7 @@ public void GetTenantWithDomainParameter()
}

[Fact]
[Trait(Category.AcceptanceType, Category.LiveOnly)]
[Trait(Category.AcceptanceType, Category.Manual)]
public void GetTenantWithoutParameters()
{
var cmdlt = new GetAzureRMTenantCommand();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests

public class MoveResourceTest
{
[Fact]
[Fact(Skip = "Need to re-record test")]
// TODO: test takes too long, reduce time and then add to Category.CheckIn
//[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestMoveAzureResource()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void TestGetResourcesViaPipingFromAnotherResource()
ResourcesController.NewInstance.RunPsTest("Test-GetResourcesViaPipingFromAnotherResource");
}

[Fact]
[Fact(Skip = "Need to re-record test")]
public void TestMoveAResourceTest()
{
ResourcesController.NewInstance.RunPsTest("Test-MoveAResource");
Expand Down