ldapcherry/.travis.yml

24 lines
659 B
YAML
Raw Normal View History

2015-04-14 20:55:19 +02:00
env:
- TRAVIS="yes"
2015-04-14 16:04:33 +02:00
before_install:
2015-04-14 16:55:10 +02:00
- curl https://ftp-master.debian.org/keys/archive-key-7.0.asc | sudo apt-key add -
2015-04-14 16:25:48 +02:00
- 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
2015-04-14 20:34:14 +02:00
- sudo /sbin/ifconfig
2015-04-14 16:04:33 +02:00
- sudo apt-get update -qq
2015-04-14 20:55:19 +02:00
- sudo rm /etc/dpkg/dpkg.cfg.d/multiarch
- sudo ./tests/test_env/deploy.sh
2015-04-14 16:04:33 +02:00
language: python
python:
- "2.7"
2015-04-14 16:25:48 +02:00
# - "3.2"
# - "3.3"
2015-04-14 16:04:33 +02:00
# command to install dependencies
install:
- pip install -e . --use-mirrors
- pip install passlib
# command to run tests
script: "./run_test.sh"