-
Notifications
You must be signed in to change notification settings - Fork 1
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
More intricate dependency control #99
Conversation
This is an option for allowing the CI/CD - Check pyproject.toml dependencies workflow to ignore certain version ranges for specific or all packages, or any combination of those rules.
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## main #99 +/- ##
===========================================
+ Coverage 53.69% 65.67% +11.98%
===========================================
Files 3 9 +6
Lines 311 472 +161
===========================================
+ Hits 167 310 +143
- Misses 144 162 +18
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
With the renaming here, I find it hard to see what are the real changes from before and what are the tests for those. It would be useful to go through it together. |
To make this more parseable and reviewable, I have split this up into 3 PRs. |
Closes #95
Implement single dependency control based on the
ignore
config option from Dependabot.This furthermore updates the Python API (and subsequently the folder structure under the
tests/
folder.Splitting up the individual tasks into individual files under a
tasks
directory.