Skip to content
Snippets Groups Projects
Commit fa925502 authored by ale's avatar ale
Browse files

AWK script to generate Graphviz visualizations of the dependencies

parent 5be26a7e
No related merge requests found
Pipeline #59294 passed
#!/usr/bin/awk -f
BEGIN {
print "digraph deps {"
print "rankdir=\"LR\";"
}
{
print "\"" $1 "\" -> \"" $2 "\""
}
END {
print "}"
}
[tox]
envlist = py3
[testenv]
deps=
nose
commands=
nosetests -vv []
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment