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

24 lines
579 B
YAML
Raw Permalink Normal View History

2015-09-14 22:25:26 +02:00
sudo: false
language: python
notifications:
email: false
python:
- 3.6
2016-06-03 09:56:26 +02:00
- 3.5
- 3.4
- 3.3
- 2.7
- 2.6
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
- 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