Skip to content

Commit

Permalink
show progress while ordering packages topologically
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Apr 26, 2017
1 parent 869f9c0 commit 0d1fcab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test_build_caches.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ def test_build_caches():
# also check topological order to prevent circular dependencies
for dist_name, cache in caches.items():
pkgs = {}
print("Parsing manifest files for '%s'" % dist_name)
for pkg_name, pkg_xml in cache.release_package_xmls.items():
pkgs[pkg_name] = parse_package_string(pkg_xml)
print("Order all packages in '%s' topologically" % dist_name)
try:
topological_order_packages(pkgs)
except RuntimeError as e:
Expand Down

0 comments on commit 0d1fcab

Please sign in to comment.