Fix front-end syntax error and add error handling to bash scripts#193
Open
affan80 wants to merge 1 commit into
Open
Fix front-end syntax error and add error handling to bash scripts#193affan80 wants to merge 1 commit into
affan80 wants to merge 1 commit into
Travis CI / Travis CI - Pull Request
required action
Sep 28, 2025 in 47s
Build Errored
The build errored. This is a change from the previous build, which passed.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #193 Fix front-end syntax error and add error handling to bash scripts.
Any changes that have been made to the develop 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 (Focal) |
| Python Version | 2.7 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "focal",
"sudo": true,
"python": [
"2.7"
],
"services": [
"docker"
],
"addons": {
"postgresql": "9.4"
},
"before_cache": [
"rm -f $HOME/.cache/pip/log/debug.log"
],
"before_script": [
"psql -c \"CREATE DATABASE cloudcv\" -U postgres"
],
"before_install": [
"pip install -U pip",
"nvm install 6.0.0",
"nvm use 6.0.0",
"npm install -g yarn@0.23.4"
],
"install": [
"pip install -r requirements/dev.txt",
"cd frontend && yarn install",
"cd ../"
],
"script": [
"flake8 ./",
"py.test --cov . --cov-config .coveragerc",
"cd frontend && npm run lint:build",
"npm run test",
"npm run build:alias"
],
"after_success": [
"cd ../",
"coveralls --rcfile=.coveragerc",
"pip install awscli",
"bash scripts/stage.sh",
"bash scripts/deploy.sh"
],
"cache": {
"directories": [
"frontend/node_modules",
"$HOME/.cache/pip"
]
}
}
Loading