Skip to content
Snippets Groups Projects
Select Git revision
  • 505141ef2a7d43ed5a09c8c6c402f005e8a6b626
  • master default
2 results

requirements.txt

Blame
  • This project manages its dependencies using pip. Learn more
    .travis.yml 916 B
    ---
    language: python
    python: "2.7"
    dist: trusty
    sudo: True
    group: beta
    env:
        global:
            - VBOX_MEMORY=2048
            - VBOX_HWVIRTEX=off
        matrix:
            - TOXENV=openbsd60
            - TOXENV=trusty
            - TOXENV=precise
            - &jessie TOXENV=jessie
            - TOXENV=wheezy
    
    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 pip install tox-travis | cat
    
    script:
      - travis_wait 45 tox
    
    notifications:
      webhooks: https://galaxy.ansible.com/api/v1/notifications/
      email: false
      on_failure: never
    
    matrix:
        fast_finish: True
        include:
            - env:
                TOXENV: pre-commit
              install:
                  - *pip_install
              sudo: False