Skip to content

change urllib3 version

5d1bcdb
Select commit
Loading
Failed to load commit list.
Open

Fix deployment for travis #473

change urllib3 version
5d1bcdb
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch failed May 1, 2025 in 43s

Build Failed

The build failed, just like the previous build.

Details

This is a normal build for the fix-deployment branch. You should be able to reproduce it by checking out the branch locally.

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.9
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "python": [
    "3.9"
  ],
  "services": [
    "docker"
  ],
  "before_install": [
    "gem install logger"
  ],
  "before_script": [
    "pip install docker-compose"
  ],
  "script": [
    "docker-compose run app sh -c \"python manage.py test && flake8\""
  ],
  "deploy": [
    {
      "provider": "codedeploy",
      "secret_access_key": "$AWS_SECRET_ACCESS_KEY",
      "access_key_id": "$AWS_ACCESS_KEY_ID",
      "revision_type": "github",
      "application": "squacapi",
      "deployment_group": "staging",
      "region": "us-west-2",
      "on": {
        "branch": [
          "staging"
        ]
      }
    },
    {
      "provider": "codedeploy",
      "secret_access_key": "$AWS_SECRET_ACCESS_KEY",
      "access_key_id": "$AWS_ACCESS_KEY_ID",
      "revision_type": "github",
      "application": "squacapi",
      "deployment_group": "production",
      "region": "us-west-2",
      "on": {
        "branch": [
          "main"
        ]
      }
    },
    {
      "provider": "codedeploy",
      "secret_access_key": "$AWS_SECRET_ACCESS_KEY",
      "access_key_id": "$AWS_ACCESS_KEY_ID",
      "revision_type": "github",
      "application": "squacapi",
      "deployment_group": "jobs",
      "region": "us-west-2",
      "on": {
        "branch": [
          "main"
        ]
      }
    }
  ]
}