Auto merge of #19070 - jdm:csstests, r=metajack

Enable CSS tests.

Do not merge this; I'm looking into what it takes to stop running the test-css jobs.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/19070)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-11-02 11:35:01 -05:00 committed by GitHub
commit 86b9e7d7d6
125300 changed files with 29391 additions and 7806491 deletions

View file

@ -316,7 +316,7 @@ def check_flake8(file_name, contents):
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