Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Add SameSite cookie middleware #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Add SameSite cookie middleware

ed87598
Select commit
Loading
Failed to load commit list.
Open

WIP: Add SameSite cookie middleware #93

Add SameSite cookie middleware
ed87598
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jun 5, 2024 in 7m 38s

Build Passed

The build passed.

Details

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

Jobs and Stages

This build has four jobs, running in parallel.

Job Python ENV OS State
3.1 3.6 DJANGO=1.11 TOXENV=py36-django111 Linux passed
3.2 3.6 DJANGO=2.2 TOXENV=py36-django22 Linux passed
3.3 3.6 DJANGO=3.0 TOXENV=py36-django30 Linux passed
3.4 3.6 DJANGO=3.0 TOXENV=docs Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "install": [
    "pip install tox",
    "pip install coveralls"
  ],
  "script": [
    "tox"
  ],
  "after_success": [
    "coveralls"
  ],
  "jobs": {
    "include": [
      {
        "python": "3.6",
        "env": [
          {
            "DJANGO": "1.11",
            "TOXENV": "py36-django111"
          }
        ]
      },
      {
        "python": "3.6",
        "env": [
          {
            "DJANGO": "2.2",
            "TOXENV": "py36-django22"
          }
        ]
      },
      {
        "python": "3.6",
        "env": [
          {
            "DJANGO": "3.0",
            "TOXENV": "py36-django30"
          }
        ]
      },
      {
        "python": "3.6",
        "env": [
          {
            "DJANGO": "3.0",
            "TOXENV": "docs"
          }
        ]
      }
    ]
  }
}