Pārlūkot izejas kodu

Update tox test environment vars

Adds Ansible environment vars required to change Ansible to use /tmp
instead of user home.
Russell Teague 5 gadi atpakaļ
vecāks
revīzija
0d15601985
4 mainītis faili ar 9 papildinājumiem un 8 dzēšanām
  1. 1 3
      setup.py
  2. 2 1
      test/tox-inventory.txt
  3. 0 3
      test/tox-inventory.txt_extras
  4. 6 1
      tox.ini

+ 1 - 3
setup.py

@@ -339,10 +339,8 @@ class OpenShiftAnsibleSyntaxCheck(Command):
             # --syntax-check each entry point playbook
             try:
                 # Create a host group list to avoid WARNING on unmatched host patterns
-                tox_ansible_inv = os.environ['TOX_ANSIBLE_INV_PATH']
                 subprocess.check_output(
-                    ['ansible-playbook', '-i', tox_ansible_inv,
-                     '--syntax-check', playbook, '-e', '@{}_extras'.format(tox_ansible_inv)]
+                    ['ansible-playbook', '--syntax-check', playbook]
                 )
             except subprocess.CalledProcessError as cpe:
                 print('{}Execution failed: {}{}'.format(

+ 2 - 1
test/tox-inventory.txt

@@ -1,2 +1,3 @@
-[new_workers]
 localhost
+[new_workers]
+[workers]

+ 0 - 3
test/tox-inventory.txt_extras

@@ -1,3 +0,0 @@
----
-hostvars:
-  localhost: {}

+ 6 - 1
tox.ini

@@ -8,7 +8,12 @@ skip_missing_interpreters=True
 
 [testenv]
 skip_install=True
-setenv = TOX_ANSIBLE_INV_PATH = {toxinidir}/test/tox-inventory.txt
+setenv =
+    ANSIBLE_INVENTORY = {toxinidir}/test/tox-inventory.txt
+    ANSIBLE_LOG_PATH=/tmp/tox/ansible/ansible.log
+    ANSIBLE_LOCAL_TEMP=/tmp/tox/ansible
+    ANSIBLE_CACHE_PLUGIN_CONNECTION=/tmp/tox/ansible/facts
+
 deps =
     -rrequirements.txt
     -rtest-requirements.txt