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

switch the type of Element.id from id to string for R4B in 7.x.x #165

Open
wants to merge 1 commit into
base: 7.X.X
Choose a base branch
from

switch the type of Element.id from id to string for R4B

954ea5f
Select commit
Loading
Failed to load commit list.
Open

switch the type of Element.id from id to string for R4B in 7.x.x #165

switch the type of Element.id from id to string for R4B
954ea5f
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Oct 24, 2024 in 10m 25s

Build Failed

The build failed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #165 switch the type of Element.id from id to string for R4B in 7.x.x.
Any changes that have been made to the 7.X.X branch before the build ran are also included.

Jobs and Stages

This build has five jobs, running in parallel.

Job Python ENV OS State Notes
414.1 Python 3.7 on Linux (dist:xenial) 3.7 python_version=3.7 Linux passed
414.2 Python 3.8 on Linux (dist:focal) 3.8 python_version=3.8 Linux failed
414.3 Python 3.9 on Linux (dist:focal) 3.9 python_version=3.9 Linux failed
414.4 Python 3.10 on Linux (dist:focal) 3.10 python_version=3.10 Linux failed
414.5 Python 3.11-dev on Linux (dist:focal) 3.11-dev python_version=3.11-dev Linux failed This job is allowed to fail.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "jobs": {
    "include": [
      {
        "name": "Python 3.7 on Linux (dist:xenial)",
        "os": "linux",
        "dist": "xenial",
        "language": "python",
        "python": "3.7",
        "env": [
          {
            "python_version": "3.7"
          }
        ]
      },
      {
        "name": "Python 3.8 on Linux (dist:focal)",
        "os": "linux",
        "dist": "focal",
        "language": "python",
        "python": "3.8",
        "env": [
          {
            "python_version": "3.8"
          }
        ]
      },
      {
        "name": "Python 3.9 on Linux (dist:focal)",
        "os": "linux",
        "dist": "focal",
        "language": "python",
        "python": "3.9",
        "env": [
          {
            "python_version": "3.9"
          }
        ]
      },
      {
        "name": "Python 3.10 on Linux (dist:focal)",
        "os": "linux",
        "dist": "focal",
        "language": "python",
        "python": "3.10",
        "env": [
          {
            "python_version": "3.10"
          }
        ]
      },
      {
        "name": "Python 3.11-dev on Linux (dist:focal)",
        "os": "linux",
        "dist": "focal",
        "language": "python",
        "python": "3.11-dev",
        "env": [
          {
            "python_version": "3.11-dev"
          }
        ]
      }
    ],
    "allow_failures": [
      {
        "python": "3.11-dev"
      }
    ]
  },
  "cache": {
    "directories": [
      "eggs"
    ]
  },
  "install": [
    "pip install -U pip",
    "pip install -e .[test]",
    "pip install codecov",
    "sleep 1"
  ],
  "script": [
    "make clean",
    "make lint",
    "mypy fhir/resources/",
    "black --check --verbose --exclude 'fhir/resources/DSTU2/tests/' fhir/resources/",
    "pytest tests",
    "pytest fhir/resources/DSTU2/tests",
    "pytest fhir/resources/STU3/tests",
    "pytest -s --cov=fhir/resources/R4B/tests -s --tb=native -v --cov-report term-missing --cov-append fhir/resources/R4B/tests",
    "pytest -s --cov=fhir/resources/tests -s --tb=native -v --cov-report term-missing --cov-append fhir/resources/tests"
  ],
  "after_success": [
    "codecov"
  ]
}