Fastavro floating number imprecision #132
Merged
Travis CI / Travis CI - Branch
succeeded
Jan 7, 2025 in 1m 47s
Build Passed
The build passed. This is a change from the previous build, which failed.
Details
This is a normal build for the fix/fastavro-floating-number-imprecision branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has two jobs, running in parallel.
Job | Python | ENV | OS | State | Notes |
---|---|---|---|---|---|
783.1 | 3.9 | PIPENV_IGNORE_VIRTUALENVS=1 | Linux | passed | |
783.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"
]
}
Loading