Skip to content

Fix front-end syntax error and add error handling to bash scripts#193

Open
affan80 wants to merge 1 commit into
Cloud-CV:developfrom
affan80:develop
Open

Fix front-end syntax error and add error handling to bash scripts#193
affan80 wants to merge 1 commit into
Cloud-CV:developfrom
affan80:develop

Fix front-end syntax error in test file and invalid import, add error…

1b9947e
Select commit
Loading
Failed to load commit list.
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"
    ]
  }
}