mirror of
https://github.com/KevinMidboe/python-gpiozero.git
synced 2025-10-29 17:50:37 +00:00
21 lines
490 B
YAML
21 lines
490 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
- "3.5"
|
|
- "3.4"
|
|
- "3.3"
|
|
- "3.2"
|
|
- "2.7"
|
|
- "pypy"
|
|
- "pypy3"
|
|
install: "pip install -e .[test]"
|
|
script: make test
|
|
before_install:
|
|
# Coverage 4.0 no longer supports py3.2 and codecov depends on latest coverage
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install "coverage<4.0dev"; fi
|
|
- pip install codecov
|
|
after_success:
|
|
- codecov
|
|
notifications:
|
|
slack: raspberrypifoundation:YoIHtVdg8Hd6gcA09QEmCYXN
|