54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
language: python
|
|
dist: bionic
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
# whitelist
|
|
branches:
|
|
only:
|
|
- master
|
|
# install some archive programs
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq archmage arj bzip2 lbzip2 pbzip2 cabextract ncompress cpio bsdcpio lzop lcab p7zip p7zip-full zip unzip rpm2cpio binutils arc nomarch unalz lrzip bsdtar rzip xdms lzip plzip clzip pdlzip sharutils flac unadf zpaq libchm-bin genisoimage rpm
|
|
# apt errors:
|
|
#E: Package 'p7zip-rar' has no installation candidate
|
|
#E: Package 'rar' has no installation candidate
|
|
#E: Package 'unrar' has no installation candidate
|
|
#E: Package 'lha' has no installation candidate
|
|
#E: Package 'orange' has no installation candidate
|
|
#E: Unable to locate package unace-nonfree
|
|
#E: Unable to locate package zopfli
|
|
|
|
# Note: pigz gives test errors on Travis CI since option "--" is not
|
|
# supported, but pigz 2.3.1 supports it. Must be an older version.
|
|
|
|
# lzma is shipped with python 3 but requires 3rd party bindings on python2
|
|
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install pyliblzma; fi
|
|
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install -q codecov
|
|
|
|
# command to run tests
|
|
script:
|
|
- make localbuild
|
|
- if [ $TRAVIS_PYTHON_VERSION = 3.3 ]; then
|
|
COVERAGE= ;
|
|
PYTEST="python -m pytest";
|
|
else
|
|
COVERAGE="coverage run" ;
|
|
PYTEST=`which pytest`;
|
|
fi
|
|
- $COVERAGE $PYTEST -v tests/
|
|
|
|
after_success:
|
|
- if [ ! -z "$COVERAGE" ]; then codecov; fi
|
|
|
|
#notifications:
|
|
# email: false
|