-
Notifications
You must be signed in to change notification settings - Fork 668
Cherry-Pick Fix Node Autocomplete Regressions #14282
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
Cherry-Pick Fix Node Autocomplete Regressions #14282
Conversation
* Fix Node Autocomplete Regressions Due that we are adding ZeroTouchNodes during test mode around 9 tests are failing, seems that there are several nodes duplicates so each test needs to be analyzed separately. Then in this fix I'm reverting the code for adding ZeroTouchNodes and also removing a test that will fail due to this change. * Fix Node Autocomplete Regressions Re-adding unit test with Failure category
…Dynamo into RC2.19.0_master
| /// This test will validate that the nodes "Input", "Output", "And", "Or", "Not", "+", "-" appear in the InCanvasSearch results | ||
| /// </summary> | ||
| [Test] | ||
| [Category("UnitTests")] |
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.
@RobertGlobant20 [Category("UnitTests")] should also be present.
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.
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.
You can just add another category attribute like this:
[Test]
[Category("UnitTests")]
[Category("Failure")]
or like this:
https://github.com/DynamoDS/Dynamo/blob/master/test/DynamoCoreTests/UnitsOfMeasureTests.cs#L1047
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.
@reddyashish ok got your point.
Due that this PR is a cherry-pick, could you approve and merge it? (If I do changes over this branch won't be cherry-picking the commit).
I will do the change in the original branch and then create another cherry-pick PR.
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.
@RobertGlobant20 This works, will approve and merge

Purpose
Cherry-Pick Fix Node Autocomplete Regressions
#14275
Declarations
Check these if you believe they are true
*.resxfilesRelease Notes
Cherry-Pick Fix Node Autocomplete Regressions
Reviewers
@QilongTang @reddyashish
FYIs