Skip to content

Commit

Permalink
Include new reports
Browse files Browse the repository at this point in the history
  • Loading branch information
thvitt committed Jul 31, 2018
1 parent b02527b commit 8ef616d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions main.py
Expand Up @@ -4,7 +4,7 @@
import sys

import graph
from report import report_components, report_refs, report_missing
from report import report_components, report_refs, report_missing, report_index, report_conflicts
from visualize import render_all

logger = logging.getLogger('main')
Expand All @@ -15,11 +15,12 @@ def _main(argv=sys.argv):
report_refs(graphs)
report_missing(graphs)
report_components(graphs)
report_conflicts(graphs)
report_index()
render_all()


if __name__ == '__main__':
import requests_cache

requests_cache.install_cache(expire_after=86400)
# import requests_cache
# requests_cache.install_cache(expire_after=86400)
_main()

0 comments on commit 8ef616d

Please sign in to comment.