AMD64
Python: 3.6
Git
.travis.yml
dist: trusty
language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install .
- pip install -r requirements.txt
- pip install pylint
# command to run tests
script:
- pylint pyodata
- py.test
notifications:
email:
recipients:
- jakub.filak@sap.com
- michal.nezerka@sap.com
on_success: always
on_failure: always
Build Config
{
"dist": "trusty",
"python": [
"3.6"
],
"script": [
"pylint pyodata",
"py.test"
],
"install": [
"pip install .",
"pip install -r requirements.txt",
"pip install pylint"
],
"language": "python",
"notifications": {
"email": {
"recipients": [
"jakub.filak@sap.com",
"michal.nezerka@sap.com"
]
},
"on_failure": "always",
"on_success": "always"
}
}