Coverage for gitman/plugin.py : 94%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
#!/usr/bin/env python3
"""Process command-line arguments and run the Git plugin."""
# Main parser '-f', '--force', action='store_true', help="overwrite uncommitted changes in dependencies", ) '-c', '--clean', action='store_true', help="delete ignored files when updating dependencies", )
# Options group
# Update option '-u', '--update', const='update', help="update dependencies to the latest versions", **shared ) help="include nested dependencies when updating") action='store_false', dest='lock', default=True, help="skip recording of versions for later reinstall")
# Display option '-l', '--list', const='list', help="display the current version of each dependency", **shared )
# Uninstall option '-x', '--uninstall', const='uninstall', help="delete all installed dependencies", **shared )
# Parse arguments
# Modify arguments to match CLI interface namespace.command = 'install'
# Configure logging
# Run the program
if __name__ == '__main__': # pragma: no cover (manual test) main() |