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

24 lines
590 B
YAML
Raw Permalink Normal View History

2015-09-25 00:21:47 +02:00
sudo: false
2014-12-07 13:57:07 +01:00
language: python
notifications:
email: false
python:
2017-07-26 01:19:31 +02:00
- pypy-5.3.1
- 3.7-dev
2017-01-17 19:00:05 +01:00
- 3.6
- 3.5
- 3.4
- 2.7
2016-04-26 00:01:53 +02:00
before_install:
2016-08-19 18:41:20 +02:00
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install flake8==2.6.2; fi
2016-05-18 23:36:46 +02:00
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
mv min_requirements.txt requirements.txt ;
fi
2016-05-18 23:36:46 +02:00
- test ! -f rnd_requirements.txt || pip install --no-deps -r rnd_requirements.txt
- test ! -f rnd_requirements.txt || pip install -r rnd_requirements.txt ;
2014-12-07 13:57:07 +01:00
- pip install -r tests/requirements.txt
script:
2016-06-08 23:34:37 +02:00
- make test
2014-12-07 13:57:07 +01:00
after_success:
codecov