From cbf31c55eda6aaa6d5d15cf73feeaf4ea2446f08 Mon Sep 17 00:00:00 2001 From: Tobias Richter Date: Wed, 7 Oct 2020 22:39:25 +0200 Subject: [PATCH] Always run travis against latest version --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2bc4435..7494382 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,6 @@ python: "3.7" env: # run against latest version - ANSIBLE_VERSION=latest - # run against minimal required version - - ANSIBLE_VERSION=2.7.* # Use the new container infrastructure sudo: false @@ -19,7 +17,7 @@ addons: install: # Install ansible and dependencies - - if [ "$ANSIBLE_VERSION" = "latest" ]; then pip install ansible --upgrade; else pip install ansible=="$ANSIBLE_VERSION" --upgrade; fi + - pip install ansible --upgrade - pip install ansible-lint requests --upgrade # Check ansible version