.travis.yml
dist: xenial
sudo: required
language: python
python:
- "3.6"
- "3.7"
# command to install dependencies
install:
- pip install .
- pip install -r dev-requirements.txt
- pip install -r requirements.txt
- pip install bandit
# command to run tests
script:
- make check
- bandit -r -lll .
after_success:
- codecov
notifications:
email:
recipients:
- jakub.filak@sap.com
- michal.nezerka@sap.com
on_success: always
on_failure: always
Build Config
{
"dist": "xenial",
"sudo": "required",
"python": [
"3.6",
"3.7"
],
"script": [
"make check",
"bandit -r -lll ."
],
"install": [
"pip install .",
"pip install -r dev-requirements.txt",
"pip install -r requirements.txt",
"pip install bandit"
],
"language": "python",
"after_success": [
"codecov"
],
"notifications": {
"email": {
"recipients": [
"jakub.filak@sap.com",
"michal.nezerka@sap.com"
]
},
"on_failure": "always",
"on_success": "always"
}
}