Merge pull request #2895 from ryanpetrello/release_3.3.0

fix failing unit tests
This commit is contained in:
Ryan Petrello 2018-08-21 08:16:29 -04:00 committed by GitHub
commit d995068396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,10 +117,10 @@ class IsolatedManager(object):
@classmethod
def awx_playbook_path(cls):
return os.path.join(
return os.path.abspath(os.path.join(
os.path.dirname(awx.__file__),
'playbooks'
)
))
def path_to(self, *args):
return os.path.join(self.private_data_dir, *args)