-
Notifications
You must be signed in to change notification settings - Fork 79
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
correct matpower parsing #836
Conversation
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Codecov Report
@@ Coverage Diff @@
## master #836 +/- ##
==========================================
+ Coverage 88.91% 88.95% +0.03%
==========================================
Files 143 143
Lines 6929 6706 -223
==========================================
- Hits 6161 5965 -196
+ Misses 768 741 -27
Flags with carried forward coverage won't be shown. Click here to find out more.
|
@rodrigomha this PR is addressing an issue in the power flow from Matpower and for some reason is breaking some tests from PSID. It seems we parse some of these cases for matpower files. |
…L-SIIP/PowerSystems.jl into jd/pv_bus_parsing_correction
@daniel-thom we are logging the errors from the test datasets now. Is it reasonable to disable the test about error logs? |
I'll make a case for keeping this "feature." It makes developers keep their tests tidy. If you take it away then developers can let error messages spew across the console. When a new developer runs the tests and sees messages in red scrolling across the screen they might think something is wrong. They have to really pay attention to the final result. This is currently the case in the PowerSimulations dev branch. This "feature" got disabled and then someone let an error message go unsuppressed. A 76-line error message spans the screen every time you run the tests. I find this messy. It's usually not a big deal to suppress expected error messages with the test_logs macro. If that is too onerous, you can also set the console log level to Logging.Error.level + 1. That's my case (recommendation). As in the past for this question, I'm OK being out-voted. |
@daniel-thom I managed to fix most of the tests throwing errors due to bad input data in 37cb8a3 let me know if this is a good solution. @claytonpbarrows merging this will deviate us from PowerModels while @ccoffrin fixes lanl-ansi/PowerModels.jl#798 |
No description provided.