diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-10-26 12:42:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-26 12:42:10 -0400 |
commit | 256c7c6cdd62e34a2dde53feea2b923bfb7533f0 (patch) | |
tree | b9198631841cf7a609c27fc471c416381abb04ac /setup.py | |
parent | 2cc1b90eba33fae1bf8d06a49bb9f64b662569ad (diff) | |
parent | 2c26b785dbc15a735dfb3f18dc4d149690d95aff (diff) | |
download | cmd2-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-x | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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]' |