Newer
Older
ldapcherry / .travis.yml
@root root on 15 Apr 2015 654 bytes trying to build travis env
env:
  - TRAVIS="yes"

before_install:
  - curl https://ftp-master.debian.org/keys/archive-key-7.0.asc | sudo apt-key add -
  - echo "deb http://http.debian.net/debian wheezy-backports main" | sudo tee -a /etc/apt/sources.list
  - echo "deb http://http.debian.net/debian wheezy main" | sudo tee -a /etc/apt/sources.list
  - sudo /sbin/ifconfig
  - sudo apt-get update -qq
  - sudo rm /etc/dpkg/dpkg.cfg.d/multiarch
  - sudo ./tests/cfg/deploy.sh

language: python
python:
  - "2.7"
#  - "3.2"
#  - "3.3"
# command to install dependencies
install: 
  - pip install -e . --use-mirrors
  - pip install passlib
# command to run tests
script: "./run_test.sh"