diff --git a/azure-pipelines-public.yml b/azure-pipelines-public.yml index ef0887a72a5..9869407ccf0 100644 --- a/azure-pipelines-public.yml +++ b/azure-pipelines-public.yml @@ -93,7 +93,7 @@ stages: - job: macOS enablePublishTestResults: true pool: - vmImage: macOS-13 + vmImage: macOS-15 variables: # Rely on task Arcade injects, not auto-injected build step. - skipComponentGovernanceDetection: true diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a4efbbabf64..f2ae8ee2b98 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -142,7 +142,7 @@ extends: - job: macOS pool: name: Azure Pipelines - image: macOS-13 + image: macOS-15 os: macOS variables: # Rely on task Arcade injects, not auto-injected build step. diff --git a/test/Microsoft.Data.Sqlite.Tests/SqliteConnectionTest.cs b/test/Microsoft.Data.Sqlite.Tests/SqliteConnectionTest.cs index 3093c9fb6c0..20146d09d61 100644 --- a/test/Microsoft.Data.Sqlite.Tests/SqliteConnectionTest.cs +++ b/test/Microsoft.Data.Sqlite.Tests/SqliteConnectionTest.cs @@ -9,12 +9,20 @@ using System.Linq; using Microsoft.Data.Sqlite.Properties; using Xunit; +using Xunit.Abstractions; using static SQLitePCL.raw; namespace Microsoft.Data.Sqlite; public class SqliteConnectionTest { + private readonly ITestOutputHelper _testOutputHelper; + + public SqliteConnectionTest(ITestOutputHelper testOutputHelper) + { + _testOutputHelper = testOutputHelper; + } + [Fact] public void Ctor_sets_connection_string() { @@ -122,6 +130,7 @@ public void ServerVersion_returns_value() var connection = new SqliteConnection(); var version = connection.ServerVersion; + _testOutputHelper.WriteLine(version); Assert.StartsWith("3.", version); }