Skip to content

Commit

Permalink
Changed cloud provider to AZURE
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jmartinezramirez committed Jul 15, 2024
1 parent 9da0952 commit e5089a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fail-fast: false
matrix:
dotnet: ['net6.0', 'net7.0', 'net8.0', 'net462', 'net471', 'net472', 'net48', 'net481']
cloud_env: ['GCP']
cloud_env: ['AZURE']
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
fail-fast: false
matrix:
dotnet: ['net6.0', 'net7.0', 'net8.0']
cloud_env: ['GCP']
cloud_env: ['AZURE']
steps:
- uses: actions/checkout@v3
- name: Setup Dotnet
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
fail-fast: false
matrix:
dotnet: ['net6.0', 'net7.0', 'net8.0']
cloud_env: ['GCP']
cloud_env: ['AZURE']
steps:
- uses: actions/checkout@v4
- name: Setup Dotnet
Expand Down
2 changes: 1 addition & 1 deletion Snowflake.Data.Tests/Snowflake.Data.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageReference Include="RichardSzalay.MockHttp" Version="6.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<ProjectReference Include="..\Snowflake.Data.GCP\Snowflake.Data.GCP.csproj" />
<ProjectReference Include="..\Snowflake.Data.Azure\Snowflake.Data.Azure.csproj" />
<ProjectReference Include="..\Snowflake.Data.Core\Snowflake.Data.Core.csproj" />
</ItemGroup>
<Target Name="CopyCustomContent" AfterTargets="AfterBuild">
Expand Down
2 changes: 2 additions & 0 deletions Snowflake.Data.Tests/UnitTests/SFRemoteStorageClientTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ namespace Snowflake.Data.Tests.UnitTests
using Moq;

[TestFixture]
[IgnoreOnEnvIs("snowflake_cloud_env",
new string[] { "AZURE", "AWS" })]
class SFRemoteStorageClientTest : SFBaseTest
{
// Mock data for file metadata
Expand Down

0 comments on commit e5089a0

Please sign in to comment.