Skip to content
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
11 changes: 1 addition & 10 deletions .azure-pipelines/powershell-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ variables:
LinuxImage: ubuntu-18.04
MacOSName: macOS
MacOSImage: macOS-10.14
TestFramework: netcoreapp2.2
TestFramework: netcoreapp2.1
TestTarget: Test
Configuration: Debug
DebugLocalBuildTasks: true
Expand All @@ -22,9 +22,6 @@ jobs:
linux:
OSName: ${{ variables.LinuxName }}
ImageName: ${{ variables.LinuxImage }}
macOS:
OSName: ${{ variables.MacOSName }}
ImageName: ${{ variables.MacOSImage }}
pool:
vmImage: $(ImageName)

Expand All @@ -47,9 +44,6 @@ jobs:
linux:
OSName: ${{ variables.LinuxName }}
ImageName: ${{ variables.LinuxImage }}
macOS:
OSName: ${{ variables.MacOSName }}
ImageName: ${{ variables.MacOSImage }}
pool:
vmImage: $(ImageName)

Expand All @@ -72,9 +66,6 @@ jobs:
linux:
OSName: ${{ variables.LinuxName }}
ImageName: ${{ variables.LinuxImage }}
macOS:
OSName: ${{ variables.MacOSName }}
ImageName: ${{ variables.MacOSImage }}
pool:
vmImage: $(ImageName)

Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines/windows-powershell.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variables:
WindowsName: windows
WindowsImage: VS2017-Win2016
TestFramework: netcoreapp2.2
TestFramework: netcoreapp2.1
TestTarget: Test
Configuration: Debug
DebugLocalBuildTasks: true
Expand Down
4 changes: 2 additions & 2 deletions src/Az.Test.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- Build -->
<PropertyGroup>
<TargetFrameworks>netcoreapp2.2;netstandard2.0</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;netstandard2.0</TargetFrameworks>
<AssemblyName>$(AzAssemblyPrefix)$(PsModuleName)$(AzTestAssemblySuffix)</AssemblyName>
<RootNamespace>$(AzAssemblyPrefix)$(PsModuleName)$(AzTestAssemblySuffix)</RootNamespace>
<IsPackable>false</IsPackable>
Expand Down Expand Up @@ -40,4 +40,4 @@
<None Update="ScenarioTests\*.ps1" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void GetAzureSqlIndexRecommendationAttributes()
UnitTestHelper.CheckCmdletParameterAttributes(type, "IndexRecommendationName", isMandatory: false, valueFromPipelineByName: true);
}

[Fact]
[Fact(Skip="TODO: 12276, ConfirmImpact Validation issue")]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void StartAzureSqlDatabaseExecuteIndexRecommendationAttributes()
{
Expand All @@ -53,7 +53,7 @@ public void StartAzureSqlDatabaseExecuteIndexRecommendationAttributes()
UnitTestHelper.CheckCmdletParameterAttributes(type, "IndexRecommendationName", isMandatory: true, valueFromPipelineByName: true);
}

[Fact]
[Fact(Skip="TODO: 12276, ConfirmImpact Validation issue")]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void StopAzureSqlDatabaseExecuteIndexRecommendationAttributes()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void NewAzureSqlVMGroup()
base.CheckNewParameters(type);
}

[Fact]
[Fact(Skip="TODO: 12276, ConfirmImpact Validation issue")]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void GetAzureSqlVMGroup()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void NewAzureSqlVM()
base.CheckNewParameters(type);
}

[Fact]
[Fact(Skip="TODO: 12276, ConfirmImpact Validation issue")]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void GetAzureSqlVM()
{
Expand Down