-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[CODE REFACTOR] - Commenting out flaky test #3634
Merged
Merged
Changes from 26 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
853090a
Code gen for ADLA
ro-joowan 8a72cc4
Code gen for ADLS
ro-joowan d0429b1
Code gen for ADLS (part 2)
ro-joowan d97f093
Merge branch 'psSdkJson6' of https://github.com/Azure/azure-sdk-for-n…
ro-joowan 0bbe518
Code gen for ADL (part 3)
ro-joowan a01781f
Update Azure Batch to 5.1.0 (#3513)
matthchr 3793362
Fixing publishing of symbols. Fixing issue# 3518 (#3519)
shahabhijeet 9efe32f
Do hydra to swagger specs migration for azure-sdk-for-net (#3482)
Monicalyy caba128
Fix Batch changelog references (#3517)
matthchr 528d017
Merge branch 'psSdkJson6' into psSdkJson6
ro-joowan 2b8907f
Fixing changelog.md
ro-joowan c4593fb
Fixing up changelog.md
ro-joowan ddb1ea6
Merge branch 'psSdkJson6' of https://github.com/Azure/azure-sdk-for-n…
ro-joowan ee186ba
[DataLake Analytics] Fixing changelog.md
ro-joowan 75f6a49
[DataLake Store] Fixing changelog.md
ro-joowan deb131f
[DataLake Analytics] Fixing changelog.md
ro-joowan 398f5b5
Merge branch 'psSdkJson6' of https://github.com/Azure/azure-sdk-for-n…
ro-joowan 7c8a514
Merge branch 'psSdkJson6' of https://github.com/Azure/azure-sdk-for-n…
ro-joowan 7338779
Revising custom Job Exists method
ro-joowan 5eec416
Adding a TODO comment
ro-joowan b047658
Merge branch 'psSdkJson6' of https://github.com/Azure/azure-sdk-for-n…
ro-joowan d45f70b
[CODE GEN] - Reverting readOnly for two fields
ro-joowan 0487521
[CODE GEN] - Updating the version (3.1.0 to 3.1.1)
ro-joowan 7c1e6f0
Merge branch 'psSdkJson6' of https://github.com/Azure/azure-sdk-for-n…
ro-joowan 61aeb65
[CODE REFACTOR] - Removing flaky test
ro-joowan f9b2727
[DOC] - Updating the changelog to describe 3.1.1-preview
ro-joowan 69f1810
Merge branch 'psSdkJson6' of https://github.com/Azure/azure-sdk-for-n…
ro-joowan c9e918e
[CODE REFACTOR] - Skipping flaky test
ro-joowan 2e516ca
Merge branch 'psSdkJson6' into psSdkJson6
shahabhijeet 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
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.
@ro-joowan rather than commenting the attribute, you should add the skip argument, this way that test is flagged as skipped in VS as well as Build logs
[Fact(Skip="Flaky test, need to fix it")]
Or
Rather simply delete the entire test, but commenting the test is kind of makes it confusing and it's hard to discover what is not being tested in the regression suite
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.
@shahabhijeet updated it so that it now skips. Thank you