Skip to content

Add renovate.json

2b2ff83
Select commit
Loading
Failed to load commit list.
Open

Configure Renovate #54

Add renovate.json
2b2ff83
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed May 7, 2025 in 3m 2s

Build Failed

The build failed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #54 Configure Renovate.
Any changes that have been made to the master 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"
  ],
  "services": [
    "docker"
  ],
  "install": [
    "docker build -t max-text-sentiment-classifier .",
    "docker run -it -d --rm -p 5000:5000 max-text-sentiment-classifier",
    "pip install -r requirements-test.txt"
  ],
  "before_script": [
    "flake8 . --max-line-length=127",
    "bandit -r .",
    "sleep 30"
  ],
  "script": [
    "pytest tests/test_api.py",
    "pytest tests/test_response.py"
  ]
}