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

Update py reference for library to /usr/bin/python - 4.12 #12458

Closed
wants to merge 1 commit into from

WIP: Update py reference for library to /usr/bin/python

1872a22
Select commit
Failed to load commit list.
Closed

Update py reference for library to /usr/bin/python - 4.12 #12458

WIP: Update py reference for library to /usr/bin/python
1872a22
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded May 30, 2023 in 1m 34s

Build Passed

The build passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #12458 WIP: Update py reference for library to /usr/bin/python.
Any changes that have been made to the release-4.12 branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Python Version 3.7
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": false,
  "cache": {
    "pip": true
  },
  "before_cache": [
    "rm ~/.cache/pip/log/debug.log"
  ],
  "python": [
    "3.7"
  ],
  "before_install": [
    "python -m pip install --upgrade virtualenv"
  ],
  "install": [
    "pip install --upgrade pip",
    "pip install tox-travis"
  ],
  "script": [
    "tox"
  ],
  "after_failure": [
    "echo \"Here's a list of installed Python packages:\"",
    "pip list --format=columns",
    "echo Dumping logs, because tests failed to succeed",
    "for log in `ls .tox/*/log/*.log`\ndo\n  echo Outputting $log\n  cat $log\ndone\n",
    "pip_debug_log=/home/travis/.cache/pip/log/debug.log",
    "echo Outputting pip debug log from $pip_debug_log",
    "cat $pip_debug_log"
  ]
}