From 4cca3661023ee52dc414ed2a44ed381c6470504f Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Fri, 22 Mar 2019 15:51:35 -0400 Subject: [PATCH] travis: Remove galaxy lint rules repository The galaxy-lint-rules github repository isn't used anymore and has been archived. All the rules are now part of the ansible-lint project. https://github.com/ansible/galaxy-lint-rules https://github.com/ansible/ansible-lint Signed-off-by: Dimitri Savineau --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0cacde7e1..157ba0233 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,6 @@ notifications: install: - pip install -r requirements.txt - pip install ansible-lint pytest - - git clone https://github.com/ansible/galaxy-lint-rules script: - pytest -vvvv library/ - - for i in $(ls -1 roles/); do ansible-lint -x 204 -v -r galaxy-lint-rules/rules roles/$i/ ; done + - for i in $(ls -1 roles/); do ansible-lint -x 204 -v roles/$i/ ; done -- 2.39.5