summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-10-26 12:42:10 -0400
committerGitHub <noreply@github.com>2018-10-26 12:42:10 -0400
commit256c7c6cdd62e34a2dde53feea2b923bfb7533f0 (patch)
treeb9198631841cf7a609c27fc471c416381abb04ac /setup.py
parent2cc1b90eba33fae1bf8d06a49bb9f64b662569ad (diff)
parent2c26b785dbc15a735dfb3f18dc4d149690d95aff (diff)
downloadcmd2-git-256c7c6cdd62e34a2dde53feea2b923bfb7533f0.tar.gz
Merge pull request #589 from python-cmd2/vsts_tox
Azure Pipelines build for macOS now runs tox instead of pytest
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 607bc346..41af5316 100755
--- a/setup.py
+++ b/setup.py
@@ -75,6 +75,7 @@ EXTRAS_REQUIRE = {
":python_version<'3.5'": ['contextlib2', 'typing'],
# Extra dependencies for running unit tests
'test': ["argcomplete ; sys_platform!='win32'", # include argcomplete tests where available
+ "gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in tox env
"mock ; python_version<'3.6'", # for python 3.5 and earlier we need the third party mock module
'codecov', 'pytest', 'pytest-cov', 'pytest-mock'],
# development only dependencies: install with 'pip install -e .[dev]'