-
Notifications
You must be signed in to change notification settings - Fork 680
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
Integration Tests - Add gulp tasks for lsp integration tests #6188
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
95bdc6f
wip
akhera99 0c960dc
explicitly use workspace path
akhera99 80a460d
fix
akhera99 aac536a
remove settings
akhera99 404630b
Merge branch 'main' into integrationtests/command_line
akhera99 ea6fd03
feedback
akhera99 6c60670
fix
akhera99 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
...rationTests/testAssets/BasicRazorApp2_1/.vscode/omnisharp_BasicRazorApp2_1.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"dotnet.server.useOmnisharp": true, | ||
"omnisharp.enableLspDriver": false | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...onTests/testAssets/BasicRazorApp2_1/.vscode/omnisharp_lsp_BasicRazorApp2_1.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"dotnet.server.useOmnisharp": true, | ||
"omnisharp.enableLspDriver": true | ||
} | ||
} |
4 changes: 0 additions & 4 deletions
4
omnisharptest/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/.vscode/settings.json
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
...ntegrationTests/testAssets/singleCsproj/.vscode/omnisharp_lsp_singleCsproj.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"omnisharp.path": "latest", | ||
"omnisharp.enableRoslynAnalyzers": true, | ||
"omnisharp.enableLspDriver": true, | ||
"dotnet.server.useOmnisharp": true | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...arpIntegrationTests/testAssets/singleCsproj/.vscode/omnisharp_singleCsproj.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"omnisharp.path": "latest", | ||
"omnisharp.enableRoslynAnalyzers": true, | ||
"omnisharp.enableLspDriver": false, | ||
"dotnet.server.useOmnisharp": true | ||
} | ||
} |
6 changes: 0 additions & 6 deletions
6
omnisharptest/omnisharpIntegrationTests/testAssets/singleCsproj/.vscode/settings.json
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
...s/testAssets/slnFilterWithCsproj/.vscode/omnisharp_lsp_slnFilterWithCsproj.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"omnisharp.defaultLaunchSolution": "SolutionFilter.slnf", | ||
"omnisharp.path": "latest", | ||
"omnisharp.enableRoslynAnalyzers": true, | ||
"dotnet.server.useOmnisharp": true, | ||
"omnisharp.enableLspDriver": true, | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...Tests/testAssets/slnFilterWithCsproj/.vscode/omnisharp_slnFilterWithCsproj.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"omnisharp.defaultLaunchSolution": "SolutionFilter.slnf", | ||
"omnisharp.path": "latest", | ||
"omnisharp.enableRoslynAnalyzers": true, | ||
"dotnet.server.useOmnisharp": true, | ||
"omnisharp.enableLspDriver": false | ||
} | ||
} |
6 changes: 0 additions & 6 deletions
6
omnisharptest/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/.vscode/settings.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletions
6
omnisharptest/omnisharpIntegrationTests/testAssets/slnWithCsproj/.vscode/settings.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order to enable this for CI it needs to be added here I believe