-
Notifications
You must be signed in to change notification settings - Fork 3
43 support for PEP751 pylock.toml files #74
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…port; modify run.py help text for clarity refactor: adjust dependency_checker.py to recognize pylock.toml in file checks test: simplify parameter list in test_parse_pylock_toml_file function
…bilities and maintenance issues warnings
…ersion bump to 0.12.0
Coverage ReportName Stmts Miss Branch BrPart Cover
-------------------------------------------------------------------------------------------------
src/uv_secure/__init__.py 3 0 0 0 100%
src/uv_secure/__version__.py 2 0 0 0 100%
src/uv_secure/configuration/__init__.py 4 0 0 0 100%
src/uv_secure/configuration/config_factory.py 32 0 12 0 100%
src/uv_secure/configuration/configuration.py 46 0 16 0 100%
src/uv_secure/configuration/exceptions.py 2 0 0 0 100%
src/uv_secure/dependency_checker/__init__.py 2 0 0 0 100%
src/uv_secure/dependency_checker/dependency_checker.py 183 0 86 0 100%
src/uv_secure/directory_scanner/__init__.py 2 0 0 0 100%
src/uv_secure/directory_scanner/directory_scanner.py 51 0 10 0 100%
src/uv_secure/package_info/__init__.py 3 0 0 0 100%
src/uv_secure/package_info/dependency_file_parser.py 63 0 32 0 100%
src/uv_secure/package_info/package_info_downloader.py 93 0 2 0 100%
src/uv_secure/run.py 41 0 10 0 100%
tests/smoke_test.py 2 0 0 0 100%
tests/uv_secure/configuration/test_configuration.py 5 0 0 0 100%
tests/uv_secure/configuration/test_configuration_factory.py 12 0 0 0 100%
tests/uv_secure/conftest.py 235 0 0 0 100%
tests/uv_secure/dependency_checker/test_dependency_checker.py 31 0 10 0 100%
tests/uv_secure/package_info/test_dependency_file_parser.py 26 0 0 0 100%
tests/uv_secure/test_run.py 433 0 4 0 100%
-------------------------------------------------------------------------------------------------
TOTAL 1271 0 182 0 100%
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added support for PEP751 pylock.toml files and added some additional warnings about dependencies missing direct/indirect status (which is the case with pylock.toml files).