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

Fix an inappropriate test expression to remove a logical short circuit #2368

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

Comment: Fixed an inappropriate test expression to remove a logical s…

150d08b
Select commit
Loading
Failed to load commit list.
Open

Fix an inappropriate test expression to remove a logical short circuit #2368

Comment: Fixed an inappropriate test expression to remove a logical s…
150d08b
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 20, 2023 in 6m 20s

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 #2368 Fix an inappropriate test expression to remove a logical short circuit.
Any changes that have been made to the devel branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in parallel.

Stage 1: Tests

This stage passed.

Job Python OS State
4107.1 F5 Unit Tests 3.8 Linux passed
4107.2 F5 Style and F5 Sanity Tests 3.8 Linux passed
4107.3 Ansible Sanity Tests - Py3.8 3.8 Linux passed
4107.4 Ansible Sanity Tests - Py3.9 3.9 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": true,
  "before_install": [
    "git config --global user.email \"[email protected]\"",
    "git config --global user.name \"Travis F5 Ansible\""
  ],
  "install": [
    "travis_retry sudo apt-get update",
    "travis_retry sudo apt-get -y install libffi-dev libssl-dev",
    "travis_retry pip install -r requirements.travis.txt"
  ],
  "stages": [
    {
      "name": "Tests",
      "if": "branch = devel AND type = pull_request"
    }
  ],
  "jobs": {
    "include": [
      {
        "stage": "Tests",
        "name": "F5 Unit Tests",
        "script": [
          "export PYTHONPATH=$PYTHONPATH:$TRAVIS_BUILD_DIR",
          "travis_retry inv test.install-dep",
          "travis_retry pip install pytest --upgrade",
          "inv test.unit"
        ],
        "python": "3.8"
      },
      {
        "name": "F5 Style and F5 Sanity Tests",
        "script": [
          "inv test.style",
          "inv test.f5-sanity"
        ],
        "python": "3.8"
      },
      {
        "name": "Ansible Sanity Tests - Py3.8",
        "script": [
          "inv test.ansible-test -r -p 3.8"
        ],
        "python": "3.8"
      },
      {
        "name": "Ansible Sanity Tests - Py3.9",
        "script": [
          "inv test.ansible-test -r -p 3.9"
        ],
        "python": "3.9"
      }
    ]
  }
}