mirror of
https://github.com/mozilla-services/syncserver
synced 2024-10-30 09:20:32 +00:00
28 lines
588 B
YAML
28 lines
588 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
# The way the selection of the Python version is currently made in Makefile
|
|
# leads to travis always picking up Python 2 for the task.
|
|
# All versions of Python are appearantly present in a travis environment.
|
|
# Once the makefile has been adjusted the following lines should be enabled.
|
|
# - "3.5"
|
|
# - "3.6"
|
|
# - "3.7-dev"
|
|
|
|
notifications:
|
|
email:
|
|
- rfkelly@mozilla.com
|
|
irc:
|
|
channels:
|
|
- "irc.mozilla.org#services-dev"
|
|
use_notice: false
|
|
skip_join: false
|
|
|
|
install:
|
|
- pip install virtualenv
|
|
- make build
|
|
|
|
script:
|
|
- make test
|