Skip to content

Add .whitesource configuration file

d4af7a8
Select commit
Loading
Failed to load commit list.
Open

Configure Mend for GitHub Enterprise #55

Add .whitesource configuration file
d4af7a8
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Sep 17, 2025 in 2m 33s

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 #55 Configure Mend for GitHub Enterprise.
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 (Focal)
Python Version 3.6
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "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"
  ]
}