Uh oh!
There was an error while loading. Please reload this page.
util: fix parseEnv handling of invalid lines - #56778
Conversation
de3dd86 to
8dd566fCompare
anonrig
left a comment
There was a problem hiding this comment.
Nice work!
Even though this test pass, I strongly recommend adding as much as comment possible while simplifying your code. Our parser is already complex (due to not using a regex) and it would help a lot if we know why such decision is taken in the parser.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@## main #56778 +/- ##
==========================================
- Coverage 90.23% 90.23% -0.01%
==========================================
Files 630 630 Lines 185288 185295 +7 Branches 36344 36339 -5 ==========================================
- Hits 167203 167199 -4 - Misses 11006 11009 +3 - Partials 7079 7087 +8
🚀 New features to boost your workflow:
|
AugustinMauroy
commented
Jan 27, 2025
Yup yagizz, I had tried to apply yours suggestions. I'm reaching my limit in C++. So I hope that this time if it's good. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
anonrig
commented
Jan 27, 2025
I see lots of changes unrelated to your PR. Can you revert everything that is unrelated to your change? |
AugustinMauroy
commented
Feb 5, 2025
Bump @anonrig 👋 |
anonrig
commented
Feb 6, 2025
@AugustinMauroy the tests are failing |
AugustinMauroy
commented
Feb 6, 2025
How to run test that fail ?? I din't get what should I do |
targos
commented
Feb 6, 2025
@aduh95 Maybe you could help here? The failure is specific to directories with special chars. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
51d9aad to
2a6ba9dCompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
This should work if it is a specific js test for more: |
AugustinMauroy
commented
Feb 14, 2025
Thanks mert 🫶🏻 |
nodejs-github-bot
commented
Feb 28, 2025
There was a problem hiding this comment.
nit: Wouldn't it make more sense to put the content here rather in a fixture file?
There was a problem hiding this comment.
The rest of tests use an fixture so I just do it as same
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
093636d to
2f90eb1CompareAugustinMauroy
commented
Mar 22, 2025
@anonrig any new ? |
I will take a look at it soon, but I'm unblocking in case there is someone who can review this faster.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
nodejs-github-bot
commented
Apr 1, 2025
aduh95
commented
Apr 7, 2025
This needs a rebase to fix the conflict |
AugustinMauroy
commented
Apr 8, 2025
I'll do that ! |
4f58de5 to
17c65d1Compare
This PR fixes an issue with
util.parseEnv()where invalid lines in the input were being incorrectly concatenated into key names instead of being skipped. The fix ensures that lines without an equals sign are properly skipped during parsingFixes: #56775