Travis CI / Travis CI - Pull Request
succeeded
Oct 25, 2020
in
7m 40s
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 #1107 Translate library/mm.po.
Any changes that have been made to the 3.8 branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Python |
| Operating System | Linux (Bionic) |
| Python Version | 3.8 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "bionic",
"python": [
"3.8"
],
"before_install": [
"sudo apt-get update",
"sudo apt-get install -y hunspell hunspell-es"
],
"install": [
"make setup",
"pospell --version",
"powrap --version"
],
"script": [
"powrap --check --quiet **/*.po",
"awk 1 dict dictionaries/*.txt > dict.txt",
"pospell -p dict.txt -l es_AR -l es_ES **/*.po",
"pip install -q -r requirements.txt",
"PYTHONWARNINGS=ignore::FutureWarning sphinx-build -j auto -W --keep-going -b html -d cpython/Doc/_build/doctree -D language=es . cpython/Doc/_build/html"
],
"branches": {
"only": [
"/^3\\.\\d$/"
]
}
}