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

Fastavro floating number imprecision #132

Merged
merged 7 commits into from
Jan 7, 2025

update dependencies

6edf4e0
Select commit
Loading
Failed to load commit list.
Merged

Fastavro floating number imprecision #132

update dependencies
6edf4e0
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jan 7, 2025 in 1m 30s

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 #132 Fastavro floating number imprecision.
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 Notes
784.1 3.9 PIPENV_IGNORE_VIRTUALENVS=1 Linux passed
784.2 3.10 PIPENV_IGNORE_VIRTUALENVS=1 Linux passed This job is allowed to fail.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Python Versions 3.9, 3.10
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "python": [
    "3.9",
    "3.10"
  ],
  "jobs": {
    "allow_failures": [
      {
        "python": "3.10"
      }
    ]
  },
  "cache": {
    "pip": true,
    "apt": true
  },
  "before_install": [
    "pip install poetry",
    "poetry --version"
  ],
  "install": [
    "poetry install -vv",
    "poetry show"
  ],
  "script": [
    "poetry run py.test -vv --cov=src --cov-report xml tests"
  ],
  "after_script": [
    "poetry run python-codacy-coverage -r coverage.xml"
  ],
  "before_deploy": [
    "poetry config repositories.testpypi https://test.pypi.org/legacy/",
    "poetry config pypi-token.testpypi $PYPI_API_TOKEN",
    "poetry config pypi-token.pypi $PYPI_PROD_API_TOKEN",
    "poetry build"
  ],
  "deploy": [
    {
      "provider": "script",
      "skip_cleanup": true,
      "script": "poetry publish -n -vv -r testpypi || true",
      "on": {
        "python": "3.9",
        "repo": "uc-cdis/pypfb",
        "tags": false,
        "all_branches": true,
        "condition": [
          "$TRAVIS_BRANCH != master"
        ]
      }
    },
    {
      "provider": "script",
      "skip_cleanup": true,
      "script": "poetry publish -n -vv",
      "on": {
        "python": "3.9",
        "repo": "uc-cdis/pypfb",
        "tags": true
      }
    }
  ],
  "env": [
    "global={:PIPENV_IGNORE_VIRTUALENVS=>\"1\"}=PYPI_API_TOKEN=[secure]=PYPI_PROD_API_TOKEN=[secure]"
  ],
  "after_deploy": [
    "pip install gen3git",
    "gen3git release"
  ]
}