bug fix in build.py which prevents running some unit tests#5990
bug fix in build.py which prevents running some unit tests#5990thiagocrepaldi merged 2 commits intomasterfrom
Conversation
38672d5
38672d5 to
aad3981
Compare
…ich generate compiled nodes
|
Some more background: So far, tests would have passed but were not being executed in the pipeline. Now, with changes from #5840, this line, would have caused one of the unit tests to fail ( From what I gather, this model serialization will throw an error for any execution provider that generate compiled nodes. And because of this, this test fails. So, I made the change to catch the exception thrown and compare it against the message |
|
Thank you for the review. 😃 |
Also ignore an exception occurred for execution providers which generate compiled nodes
Also ignore an exception occurred for execution providers which generate compiled nodes
Description:
Argument to
build.py--minimal_buildis a string argument. But it is being used as aboolwhere there is a bug. So, some of the tests are not being run as they should be in the ci pipelines.