mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-31 19:50:55 +00:00
Add tests for Python 3.6 and on MacOS
This commit is contained in:
parent
fc04e4543b
commit
8fbb094878
1 changed files with 18 additions and 8 deletions
26
.travis.yml
26
.travis.yml
|
@ -1,14 +1,24 @@
|
|||
language: python
|
||||
sudo: false
|
||||
|
||||
python:
|
||||
- 3.3
|
||||
- 3.4
|
||||
- 3.5
|
||||
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
|
||||
|
||||
before_install:
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi
|
||||
|
||||
install:
|
||||
- pip install --upgrade -e .[test]
|
||||
- pip3 install --upgrade -e .[test]
|
||||
|
||||
script:
|
||||
- python setup.py test
|
||||
|
||||
sudo: false
|
||||
- python3 setup.py test
|
Loading…
Add table
Add a link
Reference in a new issue