21 lines
625 B
YAML
21 lines
625 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.2"
|
|
# - "3.3"
|
|
# whitelist
|
|
branches:
|
|
only:
|
|
- master
|
|
# install some archive programs
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq arj bzip2 lbzip2 pbzip2 cabextract ncompress cpio bsdcpio lzop p7zip-full rar unrar unrar-nonfree zip unzip rpm2cpio binutils lha unace unace-nonfree arc nomarch unalz lrzip star bsdtar rzip zoo xdms orange lzip plzip clzip pdlzip shar flac shorten unadf
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt --use-mirrors
|
|
# command to run tests
|
|
script: make test
|
|
#notifications:
|
|
# email: false
|