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

PYTHON-1393 Add support for Cassandra 4.1.x and 5.0 releases to CI #1220

Merged
merged 8 commits into from
Jul 30, 2024

Instead of upping the max batch size for all tests just shift to smal…

d5c04cf
Select commit
Loading
Failed to load commit list.
Merged

PYTHON-1393 Add support for Cassandra 4.1.x and 5.0 releases to CI #1220

Instead of upping the max batch size for all tests just shift to smal…
d5c04cf
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jul 29, 2024 in 14m 23s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the python1393 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
7281.1 3.8 CASS_DRIVER_NO_CYTHON=1 Linux passed
7281.2 3.9 CASS_DRIVER_NO_CYTHON=1 Linux passed
7281.3 3.10 CASS_DRIVER_NO_CYTHON=1 Linux passed
7281.4 3.11 CASS_DRIVER_NO_CYTHON=1 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Python Versions 3.8, 3.9, 3.10, 3.11
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "sudo": false,
  "python": [
    "3.8",
    "3.9",
    "3.10",
    "3.11"
  ],
  "env": [
    "jobs={:CASS_DRIVER_NO_CYTHON=>\"1\"}"
  ],
  "addons": {
    "apt": {
      "packages": [
        "build-essential",
        "python3-dev",
        "pypy-dev",
        "libc-ares-dev",
        "libev4",
        "libev-dev"
      ]
    }
  },
  "install": [
    "pip install --upgrade setuptools importlib-metadata",
    "pip install tox-travis",
    "if [[ $TRAVIS_PYTHON_VERSION != pypy3.5 ]]; then pip install lz4; fi"
  ],
  "script": [
    "tox",
    "tox -e gevent_loop",
    "tox -e eventlet_loop"
  ]
}