diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2016-05-11 21:03:23 +0200 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2016-05-11 21:03:23 +0200 |
commit | 18587842c63b16085e405fff8b7e1136310c85d9 (patch) | |
tree | d34415c2a4662e4406fa3a6481dbebeccee2949c /tox.ini | |
parent | Do not include params when getting role vars in certain situations (diff) | |
download | ansible-18587842c63b16085e405fff8b7e1136310c85d9.tar.xz ansible-18587842c63b16085e405fff8b7e1136310c85d9.zip |
Exclude the sample directory from tests
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -12,10 +12,10 @@ deps = -r{toxinidir}/test/utils/tox/requirements.txt whitelist_externals = make commands = python --version - py26: python -m compileall -fq -x 'test|samples|contrib/inventory/vagrant.py' lib test contrib - py27: python -m compileall -fq -x 'test|samples' lib test contrib - py34: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib - py35: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib + py26: python -m compileall -fq -x 'test/samples|contrib/inventory/vagrant.py' lib test contrib + py27: python -m compileall -fq -x 'test/samples' lib test contrib + py34: python -m compileall -fq -x 'test/samples|lib/ansible/module_utils|lib/ansible/modules' lib test contrib + py35: python -m compileall -fq -x 'test/samples|lib/ansible/module_utils|lib/ansible/modules' lib test contrib make tests |