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

Pin sphinxcontrib-apidoc to latest version 0.4.0 #179

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

Pin sphinxcontrib-apidoc to latest version 0.4.0

0f9f4fd
Select commit
Loading
Failed to load commit list.
Open

Pin sphinxcontrib-apidoc to latest version 0.4.0 #179

Pin sphinxcontrib-apidoc to latest version 0.4.0
0f9f4fd
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Sep 4, 2023 in 2m 32s

Build Failed

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #179 Pin sphinxcontrib-apidoc to latest version 0.4.0.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Python ENV OS State
361.1 Python 3.6 3.6 DATABASE=DUMMY Linux failed
361.2 Python 3.7 3.7 DATABASE=DUMMY Linux failed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": true,
  "addons": {
    "postgresql": "9.6"
  },
  "services": [
    "postgresql",
    "docker"
  ],
  "before_script": [
    "psql -c 'create database guillotina_fhirfield;' -U postgres"
  ],
  "cache": {
    "directories": [
      "eggs"
    ]
  },
  "install": [
    "pip install -U pipenv",
    "pipenv install --dev",
    "pip install codecov mypy",
    "sleep 5"
  ],
  "script": [
    "make lint",
    "make clean",
    "pytest -s --cov=src/guillotina_fhirfield -s --tb=native -v --cov-report term-missing --cov-append src/guillotina_fhirfield"
  ],
  "after_success": [
    "codecov"
  ],
  "jobs": {
    "include": [
      {
        "name": "Python 3.6",
        "python": "3.6",
        "env": [
          {
            "DATABASE": "DUMMY"
          }
        ]
      },
      {
        "name": "Python 3.7",
        "python": "3.7",
        "env": [
          {
            "DATABASE": "DUMMY"
          }
        ]
      }
    ]
  }
}