ldapcherry/.travis.yml

30 lines
794 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
2015-05-17 00:04:46 +02:00
- pip install coveralls
2015-04-14 16:04:33 +02:00
# command to run tests
2015-05-17 00:04:46 +02:00
script:
2015-06-17 20:51:21 +02:00
- coverage run --source=ldapcherry setup.py test
2015-05-17 00:04:46 +02:00
after_success:
- coveralls
2015-06-17 20:51:21 +02:00
after_failure:
- sudo cat /var/log/syslog