-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use docutils parser to parse a docstring when ':' prefix is chosen. Now docstrings should follow RST guidelines: no indentions are allowed within token values. For now, token value supports only a plane text and an enumerate list. It should be enough for the test plan purpuses. Fix the #120 issue.
- Loading branch information
Showing
4 changed files
with
47 additions
and
28 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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
author='Suresh Thirugn', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
install_requires=['Click', 'termcolor'], | ||
install_requires=['Click', 'termcolor', 'docutils'], | ||
entry_points=''' | ||
[console_scripts] | ||
testimony=testimony.cli:testimony | ||
|
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