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

Edit PullSubscription config if config was passed in method. #506

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Removed whitespace

a9e2c41
Select commit
Loading
Failed to load commit list.
Open

Edit PullSubscription config if config was passed in method. #506

Removed whitespace
a9e2c41
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 11, 2023 in 4m 25s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #506 Edit PullSubscription config if config was passed in method..
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has nine jobs, running in parallel.

Job Python ENV State Notes
1378.1 3.8 passed
1378.2 3.9 passed
1378.3 3.10 passed
1378.4 Python: 3.11 (nats-server@main) 3.11 NATS_SERVER_VERSION=main passed
1378.5 Python: 3.12 3.12-dev passed This job is allowed to fail.
1378.6 Python: 3.11 3.11 passed This job is allowed to fail.
1378.7 Python: 3.11/uvloop 3.11 passed This job is allowed to fail.
1378.8 Python: 3.11 (nats-server@dev) 3.11 NATS_SERVER_VERSION=dev passed This job is allowed to fail.
1378.9 Python: 3.7 3.7 passed This job is allowed to fail.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Python Versions 3.8, 3.9, 3.10
Build Configuration
{
  "language": "python",
  "cache": {
    "directories": [
      "$HOME/nats-server"
    ]
  },
  "python": [
    "3.8",
    "3.9",
    "3.10"
  ],
  "before_install": [
    "bash ./scripts/install_nats.sh"
  ],
  "before_script": [
    "export PATH=$HOME/nats-server:$PATH"
  ],
  "install": [
    "pip install -e .[nkeys,aiohttp,fast-mail-parser]"
  ],
  "script": [
    "make ci"
  ],
  "notifications": {
    "email": false
  },
  "sudo": true,
  "dist": "jammy",
  "jobs": {
    "include": [
      {
        "name": "Python: 3.12",
        "python": "3.12-dev",
        "before_install": [
          "sudo apt update && sudo apt install gcc build-essential -y",
          "sudo apt-get install python3-pip",
          "sudo apt-get install python3-pytest",
          "pip install --upgrade pip",
          "bash ./scripts/install_nats.sh"
        ],
        "install": [
          "pip install -e .[fast-mail-parser]"
        ]
      },
      {
        "name": "Python: 3.11",
        "python": "3.11",
        "before_install": [
          "sudo apt update && sudo apt install gcc build-essential -y",
          "sudo apt-get install python3-pip",
          "sudo apt-get install python3-pytest",
          "pip install --upgrade pip",
          "bash ./scripts/install_nats.sh"
        ],
        "install": [
          "pip install -e .[fast-mail-parser]"
        ]
      },
      {
        "name": "Python: 3.11/uvloop",
        "python": "3.11",
        "before_install": [
          "sudo apt update && sudo apt install gcc build-essential -y",
          "sudo apt-get install python3-pip",
          "sudo apt-get install python3-pytest",
          "pip install --upgrade pip",
          "bash ./scripts/install_nats.sh"
        ],
        "install": [
          "pip install -e .[fast-mail-parser]",
          "pip install uvloop"
        ]
      },
      {
        "name": "Python: 3.11 (nats-server@main)",
        "python": "3.11",
        "env": [
          "NATS_SERVER_VERSION=main"
        ],
        "before_install": [
          "sudo apt update && sudo apt install gcc build-essential -y",
          "sudo apt-get install python3-pip",
          "sudo apt-get install python3-pytest",
          "pip install --upgrade pip",
          "bash ./scripts/install_nats.sh"
        ],
        "install": [
          "pip install -e .[fast-mail-parser]"
        ]
      },
      {
        "name": "Python: 3.11 (nats-server@dev)",
        "python": "3.11",
        "env": [
          "NATS_SERVER_VERSION=dev"
        ],
        "before_install": [
          "sudo apt update && sudo apt install gcc build-essential -y",
          "sudo apt-get install python3-pip",
          "sudo apt-get install python3-pytest",
          "pip install --upgrade pip",
          "bash ./scripts/install_nats.sh"
        ],
        "install": [
          "pip install -e .[fast-mail-parser]"
        ]
      },
      {
        "name": "Python: 3.7",
        "python": "3.7",
        "before_install": [
          "sudo apt update && sudo apt install gcc build-essential -y",
          "sudo apt-get install python3-pip",
          "sudo apt-get install python3-pytest",
          "pip install --upgrade pip",
          "bash ./scripts/install_nats.sh"
        ],
        "install": [
          "pip install -e .[aiohttp,fast-mail-parser]"
        ],
        "script": [
          "pytest -vv -s --continue-on-collection-errors tests"
        ]
      }
    ],
    "allow_failures": [
      {
        "name": "Python: 3.7"
      },
      {
        "name": "Python: 3.8"
      },
      {
        "name": "Python: 3.11"
      },
      {
        "name": "Python: 3.11/uvloop"
      },
      {
        "name": "Python: 3.11 (nats-server@dev)"
      },
      {
        "name": "Python: 3.12"
      }
    ]
  },
  "os": "linux",
  "group": "stable"
}