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

feat: update python-version and gcc-version #6

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

feat: update python-version and gcc-version

6b71506
Select commit
Loading
Failed to load commit list.
Open

feat: update python-version and gcc-version #6

feat: update python-version and gcc-version
6b71506
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Nov 21, 2023 in 13m 19s

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 #6 feat: update python-version and gcc-version.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has nine jobs, running in parallel.

Job Python OS State
374.1 2.7 Linux passed
374.2 3.4 Linux passed
374.3 3.5 Linux passed
374.4 3.6 Linux passed
374.5 pypy3 Linux passed
374.6 3.8 Linux passed
374.7 3.9 Linux passed
374.8 pypy Linux passed
374.9 pypy3 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Trusty)
Python Versions 2.7, 3.4, 3.5, 3.6, pypy3
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "trusty",
  "python": [
    "2.7",
    "3.4",
    "3.5",
    "3.6",
    "pypy3"
  ],
  "before_install": [
    "pip install --upgrade pip setuptools"
  ],
  "install": [
    "pip install -r requirements.txt",
    "if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pip install coveralls; fi"
  ],
  "script": [
    "if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage run --source=pconvert setup.py test; else python setup.py test; fi"
  ],
  "after_success": [
    "if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coveralls; fi"
  ],
  "jobs": {
    "include": [
      {
        "python": "3.8",
        "dist": "xenial"
      },
      {
        "python": "3.9",
        "dist": "xenial"
      },
      {
        "python": "pypy",
        "dist": "xenial"
      },
      {
        "python": "pypy3",
        "dist": "xenial"
      }
    ]
  }
}