-
Notifications
You must be signed in to change notification settings - Fork 21
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
Query formatting and dependency tree/graph visualisation #805
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
402d9d4
Allow easier string formatting of queries, with optional descriptions…
df23a7b
Optionally display info whether queries in dependency tree are stored
c0d5ee3
Tweak docstring and node color for stored queries
eb78051
Add helper function to plot dependency graph directly
1c524cf
Update docstring for calculate_dependency_graph()
354ebb0
Slightly terser import error message
f35239d
Add info about required packages
936b4e3
Install pygraphviz as dev dependency
f716666
Add simple test for test_plot_dependency_graph
022a494
Update changelog
fa75423
Merge branch 'master' into query-formatting
39ec276
Overwrite __format__ instead of __repr__ in Table to retain previous …
f5ff273
Add no-cover pragma for warning message.
b54fac1
Tidy up imports; add test for to_nested_list()
bea8092
Merge remote-tracking branch 'origin/master' into query-formatting
7913f31
Merge remote-tracking branch 'origin/query-formatting' into query-for…
b3a57cc
Need to explicitly import _makesafe (not covered by 'import *')
13d9a9c
Install graphviz
2aa1f50
Swap order of steps
7d43cca
Move step into run_flowmachine_tests
e01e7ab
Merge branch 'master' into query-formatting
691bac8
Add test for query formatting
ba78ae5
Merge remote-tracking branch 'origin/query-formatting' into query-for…
e3ba265
Merge branch 'master' into query-formatting
99de76a
Merge branch 'master' into query-formatting
4661848
Fix incomplete docstring
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ cachey = "*" | |
approvaltests = "*" | ||
watchdog = "*" | ||
ipdb = "*" | ||
pygraphviz = "*" | ||
|
||
[requires] | ||
python_version = "3.7" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very neat :)