summaryrefslogtreecommitdiff
path: root/test/lib/ansible_test/_internal/core_ci.py
diff options
context:
space:
mode:
authorMatt Clay <mclay@redhat.com>2021-08-12 15:07:06 -0700
committerGitHub <noreply@github.com>2021-08-12 15:07:06 -0700
commit99a79e1969472ab4ba5c0bd0cab61927b9aa93d9 (patch)
treeeff0efdf8d721c836a4081191039d2dfcfde68fd /test/lib/ansible_test/_internal/core_ci.py
parent394860560a553e85e1934699bbab1ba615922c85 (diff)
downloadansible-99a79e1969472ab4ba5c0bd0cab61927b9aa93d9.tar.gz
ansible-test - Move code from _data to _util. (#75495)
* Update paths to match relocated files. * Update ansible-test symlink paths. * Update path classification. * Update MANIFEST.in * Update sanity test context paths. * Update sanity ignores. * Update shebang sanity test. * Update configure-remoting-ps1 sanity test. * Update BOTMETA.yml to reflect new paths. * Update paths in collection loader comments. * Update Makefile for ansible-test. * Update docs. * Add changelog fragment.
Diffstat (limited to 'test/lib/ansible_test/_internal/core_ci.py')
-rw-r--r--test/lib/ansible_test/_internal/core_ci.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/ansible_test/_internal/core_ci.py b/test/lib/ansible_test/_internal/core_ci.py
index a48fdbe0e1..aad7d1da24 100644
--- a/test/lib/ansible_test/_internal/core_ci.py
+++ b/test/lib/ansible_test/_internal/core_ci.py
@@ -28,7 +28,7 @@ from .io import (
from .util import (
ApplicationError,
display,
- ANSIBLE_TEST_DATA_ROOT,
+ ANSIBLE_TEST_TARGET_ROOT,
)
from .util_common import (
@@ -325,7 +325,7 @@ class AnsibleCoreCI:
display.info('Initializing new %s/%s instance %s.' % (self.platform, self.version, self.instance_id), verbosity=1)
if self.platform == 'windows':
- winrm_config = read_text_file(os.path.join(ANSIBLE_TEST_DATA_ROOT, 'setup', 'ConfigureRemotingForAnsible.ps1'))
+ winrm_config = read_text_file(os.path.join(ANSIBLE_TEST_TARGET_ROOT, 'setup', 'ConfigureRemotingForAnsible.ps1'))
else:
winrm_config = None