debian-python-pyexcel-ods/.travis.yml

24 lines
619 B
YAML
Raw Normal View History

2015-09-14 22:25:26 +02:00
sudo: false
language: python
notifications:
email: false
python:
2016-01-23 23:30:31 +01:00
- 2.6
- 2.7
2016-06-03 09:56:26 +02:00
- 3.3
- 3.4
- 3.5
before_install:
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install flake8==2.6.2; fi
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
mv min_requirements.txt requirements.txt ;
fi
2016-08-31 09:41:51 +02:00
- pip install --upgrade setuptools "pip==7.1"
- test ! -f rnd_requirements.txt || pip install --no-deps -r rnd_requirements.txt
- test ! -f rnd_requirements.txt || pip install -r rnd_requirements.txt ;
2016-01-17 17:26:39 +01:00
- pip install -r tests/requirements.txt
script:
2016-06-09 00:43:46 +02:00
- make test
after_success:
codecov