[Security] Bump safety from 1.8.5 to 1.8.7 #40
Closed
Travis CI / Travis CI - Branch
failed
Jun 1, 2020
in
3m 33s
Build Failed
The build failed, just like the previous build.
Details
This is a normal build for the dependabot/pip/safety-1.8.7 branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has two jobs, running in parallel.
| Job | Python | OS | State |
|---|---|---|---|
| 3.6 | Linux | failed | |
| 3.7.3 | Linux | failed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Python |
| Operating System | Linux (Xenial) |
| Python Versions | 3.6, 3.7.3 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "xenial",
"python": [
"3.6",
"3.7.3"
],
"before_install": [
"pip freeze | xargs pip uninstall -y",
"curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python",
"source \"$HOME/.poetry/env\""
],
"install": [
"poetry install"
],
"script": [
"poetry run flake8 .",
"poetry run mypy classes tests/**/*.py",
"poetry run pytest . docs/pages",
"poetry run doc8 -q docs",
"poetry check",
"poetry run pip check",
"poetry run safety check --bare --full-report"
],
"after_success": [
"pip install coveralls",
"coveralls"
],
"notifications": {
"email": [
{
"on_success": "never",
"on_failure": "change"
}
]
}
}