Skip to content
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

Enable CSS tests. #19070

Merged
merged 11 commits into from Nov 2, 2017

Account for changes to Cargo.lock format.

  • Loading branch information
jdm committed Nov 2, 2017
commit b8e44e14b2e5062180f352c0b31d5936329bfb95
@@ -316,7 +316,7 @@ def stdout_redirect(where):

def check_lock(file_name, contents):
def find_reverse_dependencies(name, content):
for package in itertools.chain([content["root"]], content["package"]):
for package in itertools.chain([content.get("root", [])], content["package"]):
for dependency in package.get("dependencies", []):
if dependency.startswith("{} ".format(name)):
yield package["name"], dependency
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.