浏览代码

Use ansible-lint==2.3.6

Before sudo rule merge
https://github.com/willthames/ansible-lint/pull/96

* Add test-requirements.txt
* travis: enable cache for pip packages
Laurent Arnoud 8 年前
父节点
当前提交
bfe6fe8479
没有帐户链接到提交者的电子邮件
共有 3 个文件被更改,包括 7 次插入2 次删除
  1. 6
    1
      .travis.yml
  2. 0
    1
      requirements.txt
  3. 1
    0
      test-requirements.txt

+ 6
- 1
.travis.yml 查看文件

@@ -1,7 +1,12 @@
1 1
 language: python
2 2
 python: "2.7"
3
+cache:
4
+  directories:
5
+    - $HOME/.cache/pip
3 6
 install:
4
-  - pip install ansible ansible-lint
7
+  # TODO: use requirements.txt when ansible updated to >= 1.9
8
+  - pip install ansible
9
+  - pip install -r test-requirements.txt
5 10
 script:
6 11
   - ansible-playbook --syntax-check -i hosts site.yml
7 12
   - ansible-lint site.yml

+ 0
- 1
requirements.txt 查看文件

@@ -1,2 +1 @@
1 1
 ansible==1.6.6
2
-

+ 1
- 0
test-requirements.txt 查看文件

@@ -0,0 +1 @@
1
+ansible-lint==2.3.6

正在加载...
取消
保存