Skip to content

Commit 9c60c02

Browse files
Remove install step from yml file
1 parent b7a3c07 commit 9c60c02

2 files changed

Lines changed: 0 additions & 14 deletions

File tree

.github/workflows/ci-build-test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@ jobs:
6767
- name: 📦 Install dependencies for tests
6868
run: npm install @modelcontextprotocol/server-memory
6969

70-
- name: 📦 Install dependencies for tests
71-
run: npm install @modelcontextprotocol/conformance
72-
7370
- name: 🏗️ Build
7471
run: make build CONFIGURATION=${{ matrix.configuration }}
7572

tests/ModelContextProtocol.AspNetCore.Tests/ServerConformanceTests.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -128,17 +128,6 @@ private static string GetConformanceVersion()
128128
{
129129
// Version is configured in Directory.Packages.props for central management
130130
var version = GetConformanceVersion();
131-
_output.WriteLine($"=== Requested conformance package version: {version} ===");
132-
133-
// First, check the actual version that will be used
134-
var versionCheckInfo = NodeHelpers.NpxStartInfo($"-y @modelcontextprotocol/conformance@{version} --version");
135-
var versionProcess = Process.Start(versionCheckInfo);
136-
if (versionProcess != null)
137-
{
138-
var actualVersion = await versionProcess.StandardOutput.ReadToEndAsync();
139-
await versionProcess.WaitForExitAsync();
140-
_output.WriteLine($"=== Actual conformance package version: {actualVersion.Trim()} ===");
141-
}
142131

143132
var startInfo = NodeHelpers.NpxStartInfo($"-y @modelcontextprotocol/conformance@{version} server --url {_serverUrl}");
144133

0 commit comments

Comments
 (0)