From e58b6a8f056eb8f202fb9d543ba823dabf99384d Mon Sep 17 00:00:00 2001 From: David Wilson Date: Tue, 11 Sep 2018 05:14:30 +0000 Subject: [PATCH] tests: correct path for common-hosts --- .travis/ansible_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/ansible_tests.py b/.travis/ansible_tests.py index c7ddb989..723f9c1a 100755 --- a/.travis/ansible_tests.py +++ b/.travis/ansible_tests.py @@ -38,7 +38,7 @@ with ci_lib.Fold('job_setup'): run("pip install -q ansible==%s", ci_lib.ANSIBLE_VERSION) run("mkdir %s", HOSTS_DIR) - run("ln -s %s/common-hosts %s", TESTS_DIR, HOSTS_DIR) + run("ln -s %s/hosts/common-hosts %s", TESTS_DIR, HOSTS_DIR) with open(os.path.join(HOSTS_DIR, 'target'), 'w') as fp: fp.write('[test-targets]\n')