diff options
author | Marius Gedminas <marius@gedmin.as> | 2015-10-04 09:51:37 +0200 |
---|---|---|
committer | Marius Gedminas <marius@gedmin.as> | 2015-10-04 09:51:37 +0200 |
commit | 3e0330ad3b7485fa4d9a2568b1e6a68d64b41645 (patch) | |
tree | b218206ed6a62b7b511f00bc4960b32554c0c303 /tox.ini | |
parent | Quote any file paths that we have to use with dd to copy. (diff) | |
download | ansible-3e0330ad3b7485fa4d9a2568b1e6a68d64b41645.tar.xz ansible-3e0330ad3b7485fa4d9a2568b1e6a68d64b41645.zip |
Remove redundancies from tox.ini
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = {py26,py27,py34} +envlist = py26,py27,py34 [testenv] commands = make tests @@ -11,17 +11,12 @@ commands = python --version python -m compileall -fq -x 'test|samples|contrib/inventory/vagrant.py' lib test contrib make tests -deps = -r{toxinidir}/test-requirements.txt -whitelist_externals = - make [testenv:py27] commands = python --version python -m compileall -fq -x 'test|samples' lib test contrib make tests -deps = -r{toxinidir}/test-requirements.txt -whitelist_externals = make [testenv:py34] commands = @@ -29,5 +24,3 @@ commands = python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib # Unittests need lots of work to make code python3 compatible #make tests -deps = -r{toxinidir}/test-requirements.txt -whitelist_externals = make |