-
Notifications
You must be signed in to change notification settings - Fork 170
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 handling of virtual packages #585
Fix handling of virtual packages #585
Conversation
test/test_rosdep_debian.py
Outdated
|
||
results = list(_read_apt_cache_showpkg(['curl', 'wget', '_not_existing', 'libcurl-dev'], exec_fn=m)) | ||
assert len(results) == 4, results | ||
pkgs = ['curl', 'wget', '_not_existing', 'libcurl-dev', 'ros-kinetic-rc-genicam-api'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will this still work as intended after the next kinetic sync, from which on ros-kinetic-rc-genicam-api will be available?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, this just tests the format parser based on the text file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, right...
gnerator was iterated multiple times
- really read until last line - return as non-virtual without candidate if Reverse Provides is empty
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, sorry for the delay in reviewing
Thanks for working to fix the issue guys. |
fixes #521