Skip to content
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

Update to macOS 15 images #35440

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion azure-pipelines-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
9 changes: 9 additions & 0 deletions test/Microsoft.Data.Sqlite.Tests/SqliteConnectionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down Expand Up @@ -122,6 +130,7 @@ public void ServerVersion_returns_value()
var connection = new SqliteConnection();

var version = connection.ServerVersion;
_testOutputHelper.WriteLine(version);

Assert.StartsWith("3.", version);
}
Expand Down
Loading