-
Notifications
You must be signed in to change notification settings - Fork 4
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
Fix: Don't double unwrap config #46
Conversation
Config values passed via pyproject.toml weren't being found because the config was being xx
Conventional Commits Report😢 No conventional commits found. 👉 Learn more about the conventional commits usage at Greenbone. |
Hi, I had a look into the config code and I am really sure you get the root of the pyproject.toml config. Thus |
The tests are currently failing. Could you fix them? Afterwards I would love to create a new release with your changes. |
Config values passed via pyproject.toml weren't being found because the config was being xx
Head branch was pushed to by a user without write access
Codecov Report
@@ Coverage Diff @@
## main #46 +/- ##
==========================================
+ Coverage 97.29% 97.32% +0.02%
==========================================
Files 3 3
Lines 111 112 +1
==========================================
+ Hits 108 109 +1
Misses 3 3
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Thanks a lot! |
Config values passed via
pyproject.toml
weren't being found because the config was being unwrapped twice.What
Remove an unnecessary call to
get_ruff_config
.Why
The extra call was preventing config values from being applied.
References
N/A
Checklist