diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-03-02 19:31:53 -0500 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-03-02 19:31:53 -0500 |
| commit | 8eebaae9328aa89d3c86a382dcd9aafea7eb3728 (patch) | |
| tree | 2331d4b296aad466e9663053fae243083c083a8c /setup.py | |
| parent | 388d48682823a192d349ad877b1fd1ae5d92df44 (diff) | |
| download | cmd2-git-8eebaae9328aa89d3c86a382dcd9aafea7eb3728.tar.gz | |
Added use of pytest-forked to CI unit test runs
Due to apparent bugs in pyparsing, this can significantly speed up unit test execution.
Also:
- Removed use of pexpect in unit tests
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', 'pexpect'] +TESTS_REQUIRE = ['mock', 'pytest', 'pytest-xdist', 'pytest-forked'] DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing', 'pyperclip', 'six'] setup( |
