diff options
| author | Doug Hellmann <doug@doughellmann.com> | 2015-01-12 17:31:44 -0500 |
|---|---|---|
| committer | Doug Hellmann <doug@doughellmann.com> | 2015-01-12 17:31:44 -0500 |
| commit | 35b0d82423b88702bbaaa20436b28720c70e3a6d (patch) | |
| tree | 5890ddd2bb65ef900568388d730983223fe9398e /tox.ini | |
| parent | f96d9006080ad816cd492b7769c3d3b1d9206f72 (diff) | |
| download | python-setuptools-git-35b0d82423b88702bbaaa20436b28720c70e3a6d.tar.gz | |
Fix tox settings so they work
Update the dependency list to include the mock package.
Update the way py.test is called to only scan the setuptools directory,
to avoid scanning all of the packages installed in .tox and other
temporary directories.
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,7 @@ [tox] envlist = py26,py27,py31,py32,py33,py34 [testenv] -deps=pytest -commands=py.test {posargs} +deps= + pytest + mock +commands=py.test setuptools {posargs} |
