diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-02-09 00:07:06 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-02-09 00:07:06 -0500 |
commit | 6eb8dde0d33df2d73f9c7ff75c6beddae5453ddd (patch) | |
tree | 44cbbfc579efa655df4167e88d568ec3d8c85af4 /setup.py | |
parent | 303e9cb734d217fe4f142040518e3dd7a2a2b3ee (diff) | |
download | cmd2-git-6eb8dde0d33df2d73f9c7ff75c6beddae5453ddd.tar.gz |
First past at unit test for persistent history feature
Added pexpect to modules required for running unit tests.
This opens the door for carefully crafted complex unit tests to verify intricate behavior. Tests like this are somewhat painful to write and slow to execute. However, they can enable testing complicated interactive behavior that we otherwise probably would not be able to test.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ if sys.version_info < (3, 0): INSTALL_REQUIRES += ['subprocess32'] # unittest.mock was added in Python 3.3. mock is a backport of unittest.mock to all versions of Python -TESTS_REQUIRE = ['mock', 'pytest'] +TESTS_REQUIRE = ['mock', 'pytest', 'pexpect'] DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing', 'pyperclip', 'six'] setup( |