Skip to content
Snippets Groups Projects
Select Git revision
  • 7f5d2c7b9107f92acd8cdf79161bd384d9a08938
  • master default
2 results

.travis.yml

Blame
  • .travis.yml 897 B
    ---
    language: python
    python: "2.7"
    dist: trusty
    sudo: True
    group: beta
    env:
        global:
            - VBOX_MEMORY=2048
        matrix:
            - TOXENV=pre-commit
            - TOXENV=openbsd60
            - TOXENV=xenial
            - TOXENV=trusty
            - TOXENV=precise
            - &stretch TOXENV=stretch
            - &jessie TOXENV=jessie
            - TOXENV=wheezy
    matrix:
        fast_finish: True
        allow_failures:
            - env: *stretch
            - env: *jessie
    cache:
      - pip
      - directories:
          - $HOME/.pre-commit
    
    install:
      - sudo apt-get update
      - sudo apt-get install -y linux-headers-$(uname -r) virtualbox
      - wget https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1_x86_64.deb
      - sudo dpkg -i vagrant_1.9.1_x86_64.deb
      - pip install tox-travis | cat
    
    script:
      - travis_wait 45 tox
    
    notifications:
      webhooks: https://galaxy.ansible.com/api/v1/notifications/
      email: false
      on_failure: never