Skip to content

Commit

Permalink
Update tasks.json to use IntegrationTests.csproj (#646)
Browse files Browse the repository at this point in the history
### Motivation and Context
Fix the VSCode tasks for integration tests.

### Description
This commit changes the tasks.json file to use the
IntegrationTests.csproj file instead of the
SemanticKernel.IntegrationTests.csproj file. This is because the
SemanticKernel project has been renamed to IntegrationTests, and the
tasks.json file needs to reflect this change. This affects the test
coverage task, which runs the integration tests and generates a lcov
report. The commit also updates the cwd option to point to the new
project folder.
  • Loading branch information
lemillermicrosoft committed Apr 25, 2023
1 parent fec44ee commit 0bf374f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
"XPlat Code Coverage;Format=lcov",
"--filter",
"${input:filter}",
"SemanticKernel.IntegrationTests.csproj"
"IntegrationTests.csproj"
],
"problemMatcher": "$msCompile",
"group": "test",
Expand All @@ -156,7 +156,7 @@
"panel": "shared"
},
"options": {
"cwd": "${workspaceFolder}/dotnet/src/SemanticKernel.IntegrationTests/"
"cwd": "${workspaceFolder}/dotnet/src/IntegrationTests/"
}
},
{
Expand Down

0 comments on commit 0bf374f

Please sign in to comment.