-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add bfs/dfs ordered status output * Prototype rich formatted status tables with cli layout switch * Fix bfs ordering option, make it default * Remove unhelpful log output.. * Add rich dependency * Add rich dependency to setup.py * Quit whining flake8... * More flake8 drama.. * Cache status ordering to improve scalability * Add bfs/dfs ordered status output * Prototype rich formatted status tables with cli layout switch * Fix bfs ordering option, make it default * Remove unhelpful log output.. * Quit whining flake8... * More flake8 drama.. * Cache status ordering to improve scalability * Tweak to python version for rich. * Attach params to step records to enable use in status output * Add param name:value table in narrow status layout * Check for new status column to enable backwards compatibility * Checkpoint on renderer factory implementation * Cleanup after successful test * Remove extraneous debug logging * Fix bad indent, tweak themes to play nice on different terminal themes * Unit test for flat status layout * Fix erroneous whitespace * Add step root to workspace in status of parameterized steps * Rework status tests, add narrow layout test, rebaseline * Remove stray debug printing * Add help target and some documentation to the make file * Document layouts, add some test comments * Rename status renderer test file so pytest can find it automatically * Fix bug causing duplicate entries in narrow layout * Update narrow layout test baseline * Add layout screenshots to docs * Add legacy table format back to the status layout options * Convert base renderer to abstract, implement auto registration and auto layout cli choice list * Add some proper google style doc strings to render factory * Docstring, arg defaults change for narrow renderer * Sync up layout methods and doc strings of status renderers * Fix up docstrings on params for StepRecords * Fix incorrect return type documentation * Bug fixes/style tweaks on narrow status layout * Remove debug output * Add documentation for legacy status layout Co-authored-by: Francesco Di Natale <frank.dinatale1988@gmail.com>
- Loading branch information
Showing
18 changed files
with
1,055 additions
and
154 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,31 @@ | ||
DOCS = docs | ||
EGG = $(wildcard *.egg-info) | ||
|
||
.PHONY: cleanall clean cleandocs docs | ||
.PHONY: cleanall clean cleandocs docs help release | ||
|
||
all: cleanall release docs | ||
# Use '#' comments to auto document each target in the help message | ||
help: # Show this help message | ||
@echo 'usage: make [target] ...' | ||
@echo | ||
@echo 'targets:' | ||
@egrep '^(.+)\:\ #\ (.+)' ${MAKEFILE_LIST} | column -t -c 2 -s ':#' | ||
|
||
release: | ||
all: # Clean and then build everything | ||
cleanall release docs | ||
|
||
release: # Build wheel | ||
python setup.py sdist bdist_wheel | ||
|
||
docs: | ||
docs: # Build documentation | ||
$(MAKE) -C $(DOCS) html | ||
|
||
clean: | ||
clean: # Clean up release (wheel) build areas | ||
rm -rf dist | ||
rm -rf build | ||
|
||
cleandocs: | ||
cleandocs: # Clean up docs build areas | ||
rm -rf $(DOCS)/build | ||
|
||
cleanall: clean cleandocs | ||
cleanall: # Clean every thing | ||
clean | ||
cleandocs |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.