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

Support comma separated list values in --exclude argument #515

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

Trigger rebuild

ce36fd0
Select commit
Loading
Failed to load commit list.
Open

Support comma separated list values in --exclude argument #515

Trigger rebuild
ce36fd0
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Oct 10, 2024 in 35m 5s

Build Failed

The build failed. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #515 Support comma separated list values in --exclude argument.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job Python OS State Notes
1230.1 3.9 Linux passed
1230.2 3.9 Linux failed
1230.3 3.9 Linux failed This job is allowed to fail.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Python Version 3.9
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "python": [
    "3.9"
  ],
  "arch": [
    "arm64-graviton2"
  ],
  "branches": {
    "except": [
      "/^dependabot.*$/"
    ]
  },
  "jobs": {
    "include": [
      {
        "arch": "arm64-graviton2",
        "virt": "vm",
        "group": "edge"
      },
      {
        "arch": "ppc64le"
      },
      {
        "arch": "s390x"
      }
    ],
    "allow_failures": [
      {
        "arch": "ppc64le"
      }
    ]
  },
  "addons": {
    "apt": {
      "packages": [
        "qemu-user-static"
      ]
    }
  },
  "services": [
    "docker"
  ],
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  },
  "install": [
    "curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import",
    "curl -fsSLo ${HOME}/codecov.SHA256SUM https://uploader.codecov.io/latest/linux/codecov.SHA256SUM",
    "curl -fsSLo ${HOME}/codecov.SHA256SUM.sig https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig",
    "curl -fsSLo ${HOME}/codecov https://uploader.codecov.io/latest/linux/codecov",
    "gpgv ${HOME}/codecov.SHA256SUM.sig ${HOME}/codecov.SHA256SUM",
    "pushd ${HOME} && shasum -a 256 -c codecov.SHA256SUM && popd",
    "chmod +x ${HOME}/codecov",
    "if [ \"$(uname -m)\" != \"aarch64\" ]; then qemu-x86_64-static ${HOME}/codecov --version; fi",
    "pip install nox"
  ],
  "script": [
    "nox -s tests-3.9"
  ],
  "after_success": [
    "if [ \"$(uname -m)\" != \"aarch64\" ]; then qemu-x86_64-static ${HOME}/codecov; fi"
  ],
  "cache": {
    "directories": [
      "$HOME/.cache/auditwheel_tests"
    ]
  }
}