summaryrefslogtreecommitdiff
path: root/tests/test_pyscript.py
Commit message (Collapse)AuthorAgeFilesLines
* Suppresses stdout and stderr output by default when calling an application ↵Eric Lin2018-05-171-5/+31
| | | | | | | command from pyscript. Added support for tab completing application commands in ipython shell Updated unit tests scripts to set cmd_echo to True to validate command output.
* Added support for customizing the pyscript bridge pystate object name.Eric Lin2018-05-021-1/+51
| | | | | | | Removed all legacy pystate objects. Changed default behavior to clear _last_result before each command Added utility for creating named tuples with default values Added tests to exercise new changes.
* Added support for different argument modes and tests to validate.Eric Lin2018-05-011-16/+33
|
* Further customization of argparse applying patch submitted to ↵Eric Lin2018-04-301-0/+2
| | | | | | | https://bugs.python.org/issue15112 Added additional tests - now at 100% coverage of pyscript_bridge.py Still need handling of special action types: StoreTrue/False, store_const, count
* Added more tests exercising the pyscript bridge.Eric Lin2018-04-301-0/+30
|
* Added support for translating function positional and keyword arguments into ↵Eric Lin2018-04-281-0/+115
argparse command positional and flag arguments. Added initial set of tests