radicale/.travis.yml

25 lines
419 B
YAML
Raw Normal View History

2015-07-17 17:56:06 +02:00
language: python
2017-03-04 14:34:57 +01:00
sudo: false
matrix:
include:
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
python: 3.6
- os: osx
language: generic
2015-07-17 17:56:06 +02:00
2017-03-04 14:34:57 +01:00
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi
2015-07-17 17:56:06 +02:00
2016-04-10 11:13:54 +02:00
install:
- pip3 install --upgrade --editable .[test]
2016-04-10 11:13:54 +02:00
2016-05-12 19:24:24 +02:00
script:
2017-06-16 01:04:54 +02:00
- python3 setup.py test --addopts "-r s"