Separate test launch from test coverage#69
Open
a-yumashin wants to merge 1 commit intoGoEddie:masterfrom
Open
Conversation
…le to perform two separate launches of the executable, with the same session name provided - that's good if we want to run tests by some other means rather than by this executable via the --query option. For example: SqlCoverCore.exe -m OnlyStart -s some_unique_id_1 -c Get-CoverTSql -e Export-OpenXml -k "Server=server_name_1;Trusted_Connection=True;" -d database_name_1 SqlCoverCore.exe -m OnlyStart -s some_unique_id_2 -c Get-CoverTSql -e Export-OpenXml -k "Server=server_name_2;Trusted_Connection=True;" -d database_name_2 (here you may run any tests from any tools at servers server_name_1 and server_name_2) SqlCoverCore.exe -m OnlyStopAndReport -s some_unique_id_1 -c Get-CoverTSql -e Export-OpenXml -k "Server=server_name_1;Trusted_Connection=True;" -d database_name_1 SqlCoverCore.exe -m OnlyStopAndReport -s some_unique_id_2 -c Get-CoverTSql -e Export-OpenXml -k "Server=server_name_2;Trusted_Connection=True;" -d database_name_2
Contributor
|
@a-yumashin make sure to update the yml pipeline file for it to pass after this update |
Author
I'm afraid I got no experience with this stuff. Could you please explain in more details what should I do and where? ) |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Introduced two new options: --mode and --sessionName. Now it's possible to perform two separate launches of the executable, with the same session name provided - that's good if we want to run tests by some other means rather than by this executable via the --query option. For example:
Changes proposed in this pull request:
How to test this code:
Has been tested on: