Tag #201 passed

  • Ran for
  • Total time
  • New branch build
The .travis.yml file used for this job is not available
Build Config
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": true,
  "python": [
    "3.6",
    "3.7",
    "3.8"
  ],
  "install": [
    "pip install .",
    "pip install -r dev-requirements.txt",
    "pip install -r requirements.txt",
    "pip install bandit"
  ],
  "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"
      }
    ]
  }
}