Reprise de howto/curses #1406
+357
−132
Open
Reprise de howto/curses #1406
Travis CI / Travis CI - Pull Request
succeeded
Sep 4, 2020
in
4m 19s
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 #1406 Reprise de howto/curses.
Any changes that have been made to the 3.9 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 (Xenial) |
| Python Version | 3.7 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "xenial",
"python": [
"3.7"
],
"before_install": [
"sudo apt-get update",
"sudo apt-get install -y hunspell hunspell-fr-comprehensive"
],
"install": [
"pip install poutils",
"pospell --version",
"powrap --version",
"padpo --version"
],
"script": [
"printf \"%s\\n\" \"$TRAVIS_COMMIT_RANGE\"",
"CHANGED_FILES=\"$(ls -1d $(git diff --name-only $TRAVIS_COMMIT_RANGE) | grep \"\\.po$\")\" ;:",
"printf \"%s files changed.\\n\" \"$(printf \"%s\" \"$CHANGED_FILES\" | grep -c \"po$\")\" ;:",
"if [ -n \"$CHANGED_FILES\" ]; then printf -- \"- %s\\n\" $CHANGED_FILES; fi",
"if [ -n \"$CHANGED_FILES\" ]; then powrap --check --quiet $CHANGED_FILES; fi",
"if [ -n \"$CHANGED_FILES\" ]; then pospell -p dict -l fr_FR $CHANGED_FILES; fi",
"if [ -n \"$CHANGED_FILES\" ]; then make CPYTHON_PATH=/tmp/cpython/; fi",
"if [ -n \"$CHANGED_FILES\" ]; then padpo -i $CHANGED_FILES 2>&1 | grep -v -Ff padpo.ignore || true; fi"
]
}