Skip to content

Add renovate.json

03d2757
Select commit
Loading
Failed to load commit list.
Open

Configure Renovate #170

Add renovate.json
03d2757
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded May 8, 2025 in 57s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #170 Configure Renovate.
Any changes that have been made to the develop branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Python Version 3.6
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "python": [
    "3.6"
  ],
  "branches": {
    "only": [
      "master",
      "develop"
    ]
  },
  "install": [
    "pip3 install flake8 -r requirements.txt"
  ],
  "before_script": [
    "python3 -m flake8 --version",
    "python3 -m flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics",
    "python3 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics"
  ],
  "script": [
    "./docs/build_docs.sh"
  ]
}