Procházet zdrojové kódy

Merge pull request #487 from spk/travis-fix-sudo

Fix travis build by fixing ansible-lint version
Allen Riddell před 8 roky
rodič
revize
c70a2fa774
3 změnil soubory, kde provedl 7 přidání a 2 odebrání
  1. 6
    1
      .travis.yml
  2. 0
    1
      requirements.txt
  3. 1
    0
      test-requirements.txt

+ 6
- 1
.travis.yml Zobrazit soubor

@@ -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 Zobrazit soubor

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

+ 1
- 0
test-requirements.txt Zobrazit soubor

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

Loading…
Zrušit
Uložit