summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-03-02 19:56:37 -0500
committerGitHub <noreply@github.com>2018-03-02 19:56:37 -0500
commit40b52252a3108c8989afd6ca7e64ce9d4116cb4f (patch)
tree5672d2c25ee1fadaee332ee208e3f0770caebcb0 /setup.py
parent388d48682823a192d349ad877b1fd1ae5d92df44 (diff)
parentbca845494dcc91cab87c2d7af4b5513a4893715b (diff)
downloadcmd2-git-40b52252a3108c8989afd6ca7e64ce9d4116cb4f.tar.gz
Merge pull request #294 from python-cmd2/pytest_forked
Use pytest-forked module for Linux CI
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 28e1056c..47ee5c97 100755
--- a/setup.py
+++ b/setup.py
@@ -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']
DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing', 'pyperclip', 'six']
setup(