From 55f99b9c539abddc8c63287cf30504689f78d3a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Tue, 24 Apr 2018 18:45:26 +0200 Subject: [PATCH] install jmespath with ansible in order to run the test in the travis environment --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index bd2bda4..a998903 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ python: - '2.7' install: - pip install ansible==2.4.0 +- pip install jmespath script: - ansible-playbook -i tests/.meta/inventory tests/.meta/main.yml - for test in tests/*/; do ansible-playbook -i $test/inventory $test/test.yml; done