Travis -> GHA #191
Draft
Travis -> GHA #191
Travis CI / Travis CI - Branch
succeeded
Oct 28, 2024 in 1m 5s
Build Passed
The build passed, just like the previous build.
Details
This is a normal build for the pratik/gha branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has three jobs, running in parallel.
Job | Python | OS | State |
---|---|---|---|
854.1 | 3.6 | Linux | passed |
854.2 | 3.7 | Linux | passed |
854.3 | 3.8 | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | Python |
Operating System | Linux (Bionic) |
Python Versions | 3.6, 3.7, 3.8 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "bionic",
"python": [
"3.6",
"3.7",
"3.8"
],
"install": [
"pip install -U setuptools \"importlib-metadata==4.8.3\"",
"pip install -r requirements.txt -e .[test]"
],
"script": [
"python --version",
"pytest --version",
"pre-commit run --all-files",
"pytest --cov --cov-config=.coveragerc"
],
"after_script": [
"python -m codecov"
],
"deploy": [
{
"provider": "pypi",
"password": "$PYPI_PASSWORD",
"distributions": "sdist bdist_wheel",
"on": {
"python": "3.8",
"tags": true
},
"username": "__token__"
}
]
}
Loading