From eaaada25c72de7b03de2c3d63ae882107b277f24 Mon Sep 17 00:00:00 2001 From: Rafael Date: Thu, 23 Aug 2018 15:18:47 +0200 Subject: [PATCH] including test case using environment variables as per issue #44163 --- test/integration/targets/one_host/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/targets/one_host/tasks/main.yml b/test/integration/targets/one_host/tasks/main.yml index 98efedb52ea..9ec74137278 100644 --- a/test/integration/targets/one_host/tasks/main.yml +++ b/test/integration/targets/one_host/tasks/main.yml @@ -72,11 +72,11 @@ one_host: name: badhost state: absent - api_url: "{{ opennebula_url }}" - api_username: "{{ opennebula_username }}" - api_password: "{{ opennebula_password }}" validate_certs: false environment: + ONE_URL: "{{ opennebula_url }}" + ONE_USERNAME: "{{ opennebula_username }}" + ONE_PASSWORD: "{{ opennebula_password }}" PYONE_TEST_FIXTURE: "{{ opennebula_test_fixture }}" PYONE_TEST_FIXTURE_FILE: /tmp/opennebula-fixtures.json.gz PYONE_TEST_FIXTURE_REPLAY: "{{ opennebula_test_fixture_replay }}"